ci: run Matrix integraation test on macOS runner #4
Workflow file for this run
This file contains 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 Matrix Test macOS | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Flutter Matrix Test on macOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker | |
uses: crazy-max/ghaction-setup-docker@v3 | |
- uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} | |
- uses: hoverkraft-tech/[email protected] | |
with: | |
cwd: "integration_test/docker" | |
- name: Run Matrix integration test | |
uses: GabrielBB/[email protected] | |
with: | |
working-directory: ./integration_test | |
run: ./run_matrix_tests.sh |