-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (36 loc) · 1.15 KB
/
test-flutter.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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