Fix backfill execution based on ToT target comparison. #160
Workflow file for this run
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: Test app_dart | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- "app_dart/**" | |
- "packages/**" | |
- ".github/workflows/app_dart_tests.yaml" | |
push: | |
branches: [main] | |
jobs: | |
test-app-dart: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: app_dart | |
steps: | |
- uses: dart-lang/setup-dart@v1 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get packages | |
run: | | |
dart pub get | |
- name: dart analyze app_dart | |
run: | | |
dart analyze --fatal-infos | |
- name: dart format app_dart | |
run: | | |
dart format --set-exit-if-changed . | |
- name: dart test app_dart | |
run: | | |
dart test test |