File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
22
java-version : ' 12.x'
23
23
- uses : subosito/flutter-action@v1
24
24
with :
25
- channel : ' stable '
25
+ flutter-version : ' 3.27.1 '
26
26
- name : Install project dependencies
27
27
run : flutter pub get
28
28
- name : Dart Format Check
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
- name : Install Flutter
15
15
uses : subosito/flutter-action@v2
16
16
with :
17
- channel : " stable "
17
+ flutter-version : " 3.27.1 "
18
18
- name : Install project dependencies
19
19
run : flutter pub get
20
20
- name : Dart Format Check
21
21
run : dart format lib/ test/ --set-exit-if-changed
22
22
- name : Import Sorter Check
23
- run : dart run import_sorter:main
23
+ run : dart run import_sorter:main --exit-if-changed
24
24
- name : Dart Analyze Check
25
25
run : flutter analyze
26
26
- name : Dart Test Check
Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ class UA extends EventManager {
319
319
int num_sessions = _sessions.length;
320
320
321
321
// Run _terminate_ on every Session.
322
- _sessions.keys.toList ().forEach ((String ? key, _ ) {
322
+ _sessions.keys.toList ().forEach ((String ? key) {
323
323
if (_sessions.containsKey (key)) {
324
324
logger.d ('closing session $key ' );
325
325
try {
You can’t perform that action at this time.
0 commit comments