[gh] restructure wf files #2
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: Check | |
on: | |
push: | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
# Call setup_env workflow to setup workspace | |
- uses: ./.github/workflows/setup_env.yml | |
# Check for any formatting issues in the code. | |
- run: dart format --set-exit-if-changed . | |
# Statically analyze the Dart code for any errors. | |
- run: dart analyze . | |
# Run widget tests for our flutter project. | |
# - run: flutter test |