feat: add support for skipping tests based on the enforced target platform #62
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: Format and test on push | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: macos-latest | |
strategy: | |
matrix: { dir: ['example/simple_app', 'example/multi_packages_app/app', 'example/multi_packages_app/theme'] } | |
defaults: | |
run: | |
working-directory: ${{ matrix.dir }} | |
steps: | |
- uses: actions/checkout@v2 | |
- id: dotenv | |
uses: falti/[email protected] | |
with: | |
path: .github/workflows/.env | |
- uses: subosito/[email protected] | |
with: | |
flutter-version: ${{ steps.dotenv.outputs.flutter_version }} | |
channel: "stable" | |
cache: true | |
cache-key: flutter-macos-${{ steps.dotenv.outputs.flutter_version }} | |
cache-path: ${{ runner.tool_cache }}/flutter-${{ steps.dotenv.outputs.flutter_version }} | |
- name: Install Dependencies | |
run: flutter packages get | |
- name: Format | |
run: dart format --set-exit-if-changed lib test | |
- name: Analyze | |
run: flutter analyze lib test | |
- name: Run tests | |
run: flutter test --no-pub --test-randomize-ordering-seed random |