-
Notifications
You must be signed in to change notification settings - Fork 51
58 lines (43 loc) · 1.29 KB
/
flutter.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
56
57
name: Flutter
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
flutter-channel: [ 'stable' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.flutter-channel }}
- name: Print Dart SDK version
run: dart --version
- name: Print Flutter SDK version
run: flutter --version
- name: Install dependencies
run: dart pub get
- name: Format code
if: ${{ matrix.flutter-channel == 'stable' }}
run: dart format lib --set-exit-if-changed
- name: Analyze
if: ${{ matrix.flutter-channel == 'stable' }}
run: dart analyze lib
- name: Gen code
run: dart run build_runner build --delete-conflicting-outputs
- name: Build Debug APK
run: flutter build apk --debug --no-shrink
- name: Upload APK
if: ${{ matrix.flutter-channel == 'stable' }}
uses: actions/upload-artifact@v4
with:
name: app-${{ matrix.flutter-channel }}
path: build/app/outputs/apk/debug/app-debug.apk