Adressing optimization potential #1794
Workflow file for this run
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: Code Validation | |
on: | |
push: | |
pull_request: | |
# Allow running this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run shared environment setup steps | |
uses: ./.github/actions/environment_setup | |
- name: Run static analysis and style guideline checks | |
run: flutter analyze |