File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -13,30 +13,34 @@ jobs:
13
13
analyze :
14
14
strategy :
15
15
matrix :
16
- packages : [sqlite3]
16
+ package : [sqlite3]
17
17
18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : actions/checkout@v2
21
21
- uses : DanTup/gh-actions/setup-dart@master
22
22
with :
23
23
channel : dev
24
-
24
+
25
+ - name : Pub get
26
+ run : dart pub get
27
+ working-directory : ${{ matrix.package }}
28
+
25
29
- name : Format
26
30
run : dart format --set-exit-if-changed .
27
- working-directory : sqlite3/
31
+ working-directory : ${{ matrix.package }}
28
32
29
33
- name : Analyze
30
34
run : dart analyze
31
- working-directory : sqlite3/
35
+ working-directory : ${{ matrix.package }}
32
36
33
37
test :
34
38
strategy :
35
39
matrix :
36
40
os : [ubuntu-latest, windows-latest, macOS-latest]
37
41
dart : [dev]
38
42
39
- runs-on : ${{ matrix.os }}
43
+ runs-on : ${{ matrix.dart }}
40
44
41
45
# Steps represent a sequence of tasks that will be executed as part of the job
42
46
steps :
54
58
run : choco install sqlite
55
59
56
60
- name : Test
57
- run : dart test
61
+ run : |
62
+ pub get
63
+ dart test
58
64
working-directory : sqlite3/
You can’t perform that action at this time.
0 commit comments