-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (41 loc) · 1.2 KB
/
main.yml
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
45
46
47
48
49
50
51
52
53
name: Flutter/Dart CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
flutter_version: "3.19.x" # Latest stable Flutter version
java_version: "12.x"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ env.java_version }}
- name: Cache Flutter dependencies
uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/flutter
key: ${{ runner.OS }}-flutter-install-cache-${{ env.flutter_version }}
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutter_version }}
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Install example dependencies
working-directory: ./example
run: flutter pub get
- name: Run Formatter
run: dart format --output=none --set-exit-if-changed .
- name: Run Analyzer
run: dart analyze --fatal-infos
- name: Run tests
run: flutter test # This will run tests in both the main package and example