File tree 11 files changed +474
-158
lines changed
11 files changed +474
-158
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 4
4
- 2.17.0
5
5
6
6
stages :
7
+ - analyze :
8
+ - format
7
9
- build :
8
10
- command : dart run build_runner build --fail-on-severe
9
11
- unit_test :
Original file line number Diff line number Diff line change
1
+ sdk :
2
+ - dev
3
+ - stable
4
+ - 2.17.0
5
+
6
+ stages :
7
+ - analyze :
8
+ - format
9
+ - analyze
Original file line number Diff line number Diff line change 5
5
6
6
stages :
7
7
- analyze :
8
- # TODO: add --fata-infos once analysis issues have been resolved
8
+ - format
9
9
- analyze
10
10
- build :
11
11
- command : dart run build_runner build --fail-on-severe
Original file line number Diff line number Diff line change 5
5
6
6
stages :
7
7
- analyze :
8
- - group :
9
- - analyze # : --fatal-infos
10
- sdk : dev
11
- - group :
12
- - analyze
13
- sdk : stable
14
- - group :
15
- - analyze
16
- sdk : 2.17.0
8
+ - format
9
+ - analyze
17
10
- build :
18
11
- command : dart run build_runner build --fail-on-severe
19
12
- unit_test :
Original file line number Diff line number Diff line change 4
4
- 2.17.0
5
5
6
6
stages :
7
+ - analyze :
8
+ - format
9
+ - analyze
7
10
- build :
8
11
- command : dart run build_runner build --fail-on-severe
9
12
- unit_test :
Original file line number Diff line number Diff line change 4
4
- 2.17.0
5
5
6
6
stages :
7
+ - analyze :
8
+ - format
9
+ - analyze
7
10
- build :
8
11
- command : dart run build_runner build --fail-on-severe
9
12
- unit_test :
Original file line number Diff line number Diff line change 4
4
- 2.17.0
5
5
6
6
stages :
7
+ - analyze :
8
+ - format
9
+ - analyze
7
10
- build :
8
11
- command : dart run build_runner build --fail-on-severe
9
12
- unit_test :
Original file line number Diff line number Diff line change 5
5
6
6
stages :
7
7
- analyze :
8
- - group :
9
- - analyze # : --fatal-infos
10
- sdk : dev
11
- - group :
12
- - analyze
13
- sdk : stable
8
+ - format
9
+ - analyze
14
10
- build :
15
11
- command : dart run build_runner build --fail-on-severe
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ github:
22
22
# env:
23
23
# CHAT_WEBHOOK_URL: ${{ secrets.TEAM_CHAT_WEBHOOK_URL }}
24
24
25
- self_validate : analyze
25
+ self_validate : true
26
26
merge_stages :
27
- - analyze
27
+ - analyze
Original file line number Diff line number Diff line change @@ -87,6 +87,10 @@ for PKG in ${PKGS}; do
87
87
echo ' dart run build_runner test --fail-on-severe -- -P ci'
88
88
dart run build_runner test --fail-on-severe -- -P ci || EXIT_CODE=$?
89
89
;;
90
+ format)
91
+ echo ' dart format --output=none --set-exit-if-changed .'
92
+ dart format --output=none --set-exit-if-changed . || EXIT_CODE=$?
93
+ ;;
90
94
* )
91
95
echo -e " \033[31mUnknown TASK '${TASK} ' - TERMINATING JOB\033[0m"
92
96
exit 64
You can’t perform that action at this time.
0 commit comments