Update packages #99
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: "Run analyze" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: subosito/[email protected] | |
with: | |
channel: stable | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Code generation | |
run: flutter pub run build_runner build -d | |
- name: Analyze | |
run: flutter analyze |