Skip to content

Commit

Permalink
Fix CI (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
rrousselGit committed Mar 13, 2023
1 parent ec73120 commit a60a35c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ jobs:
- name: Install dependencies
run: flutter pub get

- run: flutter format lib test --set-exit-if-changed
- run: dart format lib test --set-exit-if-changed
if: matrix.channel == 'master'

- run: flutter analyze --no-current-package

- run: flutter test --no-pub --coverage test/null_safe
- run: flutter test --no-pub --coverage --no-sound-null-safety test/mixed_mode
if: matrix.package_path != 'master'
if: matrix.channel != 'master'
3 changes: 1 addition & 2 deletions test/null_safe/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,7 @@ class DeferredStartListeningMock<T, R> extends Mock {
void Function(R value) setState,
T controller,
R? value,
)?
call,
)? call,
]) {
if (call != null) {
when(this(any, any, any, any)).thenAnswer((invoc) {
Expand Down

0 comments on commit a60a35c

Please sign in to comment.