Skip to content

Commit

Permalink
Updated github actions not to dart lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ikurek committed Apr 27, 2022
1 parent 11457c8 commit 1a85551
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,8 @@ jobs:
- name: 'Check formatting issues in the code'
run: flutter format --set-exit-if-changed .

# Suppressing info - deprecated entries fall under info, and CI shouldn't fail if there are any Deprecated APIs
# FIXME(ikurek): We should probably just configure linter to ignore deprecation, instead of disabling errors here
- name: 'Statically analyze the Dart code for any errors'
run: 'flutter analyze --no-pub --no-fatal-infos .'
run: 'flutter analyze --no-pub .'

- name: 'Run unit tests'
run: flutter test --no-pub

0 comments on commit 1a85551

Please sign in to comment.