mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
add a skip value, so we can run and skip tests at the same level. (#2413)
This commit is contained in:
parent
929dc5e6f0
commit
91cc999523
3 changed files with 20 additions and 3 deletions
6
.github/workflows/reusable-android-build.yml
vendored
6
.github/workflows/reusable-android-build.yml
vendored
|
|
@ -8,6 +8,11 @@ on:
|
|||
required: false
|
||||
type: boolean
|
||||
default: true
|
||||
skip_tests:
|
||||
description: 'Whether to skip running tests'
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
secrets:
|
||||
GRADLE_ENCRYPTION_KEY:
|
||||
required: false
|
||||
|
|
@ -16,6 +21,7 @@ jobs:
|
|||
build_and_detekt:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 35
|
||||
if: ${{ !inputs.skip_tests }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue