We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8310197 + 0a743d4 commit 2909659Copy full SHA for 2909659
1 file changed
.github/workflows/test.yaml
@@ -8,6 +8,10 @@ on:
8
required: false
9
default: ''
10
description: "Specifies a subpath of the checkout that the package is contained in."
11
+ include_android:
12
+ type: boolean
13
+ description: "Whether testing should include an Android target."
14
+ default: true
15
16
env:
17
PACKAGE_PATH: ${{ inputs.package_path != '' && format('--package-path={0}', inputs.package_path) || '' }}
@@ -51,6 +55,7 @@ jobs:
51
55
52
56
android:
53
57
name: Test on Android
58
+ if: ${{ inputs.include_android }}
54
59
runs-on: ubuntu-latest
60
steps:
61
- uses: actions/checkout@v4
0 commit comments