Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
required: false
default: ''
description: "Specifies a subpath of the checkout that the package is contained in."
include_android:
type: boolean
description: "Whether testing should include an Android target."
default: true

env:
PACKAGE_PATH: ${{ inputs.package_path != '' && format('--package-path={0}', inputs.package_path) || '' }}
Expand Down Expand Up @@ -51,6 +55,7 @@ jobs:

android:
name: Test on Android
if: ${{ inputs.include_android }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down