Skip to content

Chore/flutter3_10_0_compatibility #28

Chore/flutter3_10_0_compatibility

Chore/flutter3_10_0_compatibility #28

Workflow file for this run

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