Merge pull request #1 from ethicnology/upgrade-to-v8 #11
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: Dart Integration Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| integration-test: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: rustup target add aarch64-apple-ios | |
| - name: Install FVM | |
| run: | | |
| curl -fsSL https://fvm.app/install.sh | bash | |
| echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
| - run: cd example && fvm install | |
| - run: cd example && fvm flutter pub get | |
| - run: cd example && fvm flutter test integration_test -d macos | |