File tree Expand file tree Collapse file tree 2 files changed +22
-28
lines changed Expand file tree Collapse file tree 2 files changed +22
-28
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : Build test (stable)
1
+ name : Runnable (stable)
2
2
3
3
on :
4
4
push :
7
7
pull_request :
8
8
9
9
jobs :
10
+ analyze :
11
+ name : Analyze on ${{ matrix.os }}
12
+ runs-on : ${{ matrix.os }}
13
+ strategy :
14
+ matrix :
15
+ os : [ubuntu-latest]
16
+ steps :
17
+ - uses : actions/checkout@v1
18
+ - uses : actions/setup-java@v1
19
+ with :
20
+ java-version : ' 11.x'
21
+ - uses : subosito/flutter-action@v1
22
+ with :
23
+ channel : ' stable'
24
+ - run : dart --version
25
+ - run : flutter --version
26
+ - run : flutter pub get
27
+ - run : flutter analyze lib example/lib
28
+
10
29
test_iOS :
30
+ needs : analyze
11
31
name : Test iOS on ${{ matrix.os }}
12
32
runs-on : ${{ matrix.os }}
13
33
strategy :
27
47
- run : cd example; flutter build ios --no-codesign
28
48
29
49
test_android :
50
+ needs : analyze
30
51
name : Test Android on ${{ matrix.os }}
31
52
runs-on : ${{ matrix.os }}
32
53
strategy :
You can’t perform that action at this time.
0 commit comments