chore: unconscious commit #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analyze | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
analyze_and_test: | |
name: Flutter analyze | |
strategy: | |
matrix: | |
flutter: ['stable'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter doctor | |
- run: flutter --version | |
- run: flutter pub get | |
- run: dart format --set-exit-if-changed . | |
- run: flutter analyze |