File tree Expand file tree Collapse file tree 4 files changed +169
-95
lines changed Expand file tree Collapse file tree 4 files changed +169
-95
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ master ]
8
8
9
9
jobs :
10
- build :
10
+ formatter :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v2
14
14
- uses : dart-lang/setup-dart@v1.0
15
15
with :
16
- sdk : 2.18.0
16
+ sdk : 3.6.0
17
+ - name : Install dependencies
18
+ run : dart pub get
19
+ - name : Run Dart Analyzer
20
+ run : dart format ./ -l 120 --set-exit-if-changed
21
+
22
+ analyzer :
23
+ runs-on : ubuntu-latest
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - uses : dart-lang/setup-dart@v1.0
27
+ with :
28
+ sdk : 3.6.0
29
+ - name : Install dependencies
30
+ run : dart pub get
31
+ - name : Run Dart Analyzer
32
+ run : dart analyze --fatal-warnings --fatal-infos
33
+
34
+ tests :
35
+ runs-on : ubuntu-latest
36
+ steps :
37
+ - uses : actions/checkout@v2
38
+ - uses : dart-lang/setup-dart@v1.0
39
+ with :
40
+ sdk : 3.6.0
17
41
- name : Install dependencies
18
42
run : dart pub get
19
43
- name : Run tests
Original file line number Diff line number Diff line change 5
5
# Conventional directory for build output.
6
6
build /
7
7
8
- /.idea
8
+ .idea
9
+
10
+ .vscode
11
+
12
+ coverage
You can’t perform that action at this time.
0 commit comments