Own Device Farm launch inputs in SDK plugin #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Flutter adapter | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pigeon: | |
| name: Verify Pigeon outputs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| - name: Install Dart dependencies | |
| run: flutter pub get | |
| - name: Verify generated native capture bridges | |
| run: bash tool/ci/verify-native-capture-pigeon.sh | |
| pub-dry-run: | |
| name: pub publish dry-run | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| - name: Install Dart dependencies | |
| run: dart pub get | |
| - name: Dry-run pub publish | |
| run: bash tool/ci/pub-dry-run.sh |