Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional lints #1584

Merged
merged 10 commits into from
Sep 11, 2022
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}

Expand All @@ -41,13 +41,13 @@ jobs:
run: melos bootstrap --ignore "codemod_riverpod_*,riverpod_cli"

- name: Check format
run: melos exec --ignore="website_snipets" -- "flutter format --set-exit-if-changed ."
run: melos exec --ignore="website_snippets" -- "flutter format --set-exit-if-changed ."

- name: Generate
run: melos exec --depends-on="build_runner" -- "dart run build_runner build --delete-conflicting-outputs"

- name: Analyze
run: melos exec --ignore="codemod_riverpod_test*" -- "flutter analyze"
run: melos exec --ignore="codemod_riverpod_test*,riverpod_lint_flutter_test" -- "flutter analyze"

- name: Run tests
run: melos run test
Expand Down
Loading