#676 snackbar indicator for failure messages #2003
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: Quality check | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Check code quality. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository. | |
uses: actions/checkout@v3 | |
- name: Get packages for the Flutter project. | |
run: scripts/pub_get_all.sh | |
- name: Update the flutter version file. | |
run: scripts/update_flutter_version.sh | |
- name: Static analysis. | |
run: ./flutterw analyze | |
- name: Unit tests. | |
run: ./flutterw test |