We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b3bc45 commit b488b90Copy full SHA for b488b90
.github/workflows/deploy.yml
.github/workflows/lint.yml
@@ -1,14 +1,18 @@
1
name: lint
2
on:
3
push:
4
- branches: [main]
+ branches:
5
+ - main
6
pull_request:
7
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
- container:
- image: google/dart:latest
12
steps:
13
- uses: actions/checkout@v2
14
- - run: dartfmt --dry-run --set-exit-if-changed lib/*.dart lib/models/*.dart lib/scaffolds/*.dart lib/screens/*.dart lib/utils/*.dart lib/widgets/*.dart
+ - uses: subosito/flutter-action@v1
15
+ with:
16
+ channel: stable
17
+ - run: flutter analyze
18
+ - run: flutter format --dry-run --set-exit-if-changed lib/**/*.dart
0 commit comments