Update workflows, run all tests #1
This file contains hidden or 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: Static Analysis & Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - refresh | |
| jobs: | |
| todos_repository_local_storage: | |
| name: Todos Repository Local Storage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Static Analysis & Tests | |
| uses: ./.github/actions/flutter_analysis_and_tests | |
| with: | |
| working-directory: ./todos_repository_local_storage | |
| run-integration-tests: false | |
| vanilla: | |
| name: Vanilla | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Static Analysis & Tests | |
| uses: ./.github/actions/flutter_analysis_and_tests | |
| with: | |
| working-directory: ./vanilla | |
| inherited_widget: | |
| name: Inherited Widget | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Static Analysis & Tests | |
| uses: ./.github/actions/flutter_analysis_and_tests | |
| with: | |
| working-directory: ./inherited_widget |