File tree Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Original file line number Diff line number Diff line change 10
10
branches : ["main"]
11
11
12
12
jobs :
13
- lint :
14
- name : Check lints
15
- runs-on : ubuntu-latest
16
-
17
- steps :
18
- - uses : actions/checkout@v4
19
- - uses : subosito/flutter-action@v2
20
- with :
21
- channel : " stable"
22
- - run : flutter --version
23
-
24
- # Check for any formatting issues in the code.
25
- - name : Verify formatting
26
- run : dart format --set-exit-if-changed .
27
-
28
- analyze :
29
- name : Check code analysis
13
+ code_quality :
14
+ name : Check source code quality
30
15
runs-on : ubuntu-latest
31
16
steps :
32
17
- uses : actions/checkout@v4
42
27
# Statically analyze the Dart code for any errors.
43
28
- name : Analyze project source
44
29
run : flutter analyze .
30
+
31
+ # Check for any formatting issues in the code.
32
+ - name : Verify formatting
33
+ run : dart format --set-exit-if-changed .
You can’t perform that action at this time.
0 commit comments