1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-13 22:53:45 +08:00

CI: Run with unsound null safety

It's better to have the CI be green.
This commit is contained in:
Vishesh Handa
2021-05-25 11:00:03 +02:00
parent f3d3cfcb3b
commit c0a42aab54

@ -13,7 +13,8 @@ jobs:
command: echo 'Host *\n StrictHostKeyChecking no' > ~/.ssh/config command: echo 'Host *\n StrictHostKeyChecking no' > ~/.ssh/config
- run: - run:
name: Test name: Test
command: flutter test -j 1 --coverage --machine | tojunit --output junit.xml # FIXME: Run `flutter test` with sound null safety
command: flutter test --no-sound-null-safety --coverage --machine | tojunit --output junit.xml
- store_test_results: - store_test_results:
path: ./ path: ./
# - run: # - run: