-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (54 loc) · 1.54 KB
/
flutter-ci.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
54
55
name: Flutter CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
- uses: dart-lang/[email protected]
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Cache FVM & Flutter
uses: actions/cache@v4
with:
path: /home/runner/fvm/versions/
key: ${{ runner.os }}-${{ hashFiles('**/fvm_config.json') }}
- name: Cache pub cache
uses: actions/cache@v4
with:
path: /home/runner/.pub-cache/
key: ${{ runner.os }}-pub-cache
- name: Install FVM && Flutter
run: dart pub global activate fvm --verbose && fvm install --verbose && fvm use --force --verbose
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Activate arb_utils
run: |
dart pub global activate arb_utils 0.8.3
- name: Get dependencies
uses: maierj/[email protected]
with:
lane: 'fetch_dependencies'
- name: 'Run lints'
uses: maierj/[email protected]
with:
lane: 'lints'
- name: 'Check generated code'
uses: maierj/[email protected]
with:
lane: 'ensure_no_change_in_generated_code'
- name: 'Run tests'
uses: maierj/[email protected]
with:
lane: 'tests'