Fix backfill execution based on ToT target comparison. #140
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: Common workflows | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
common-validations: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dart-lang/setup-dart@v1 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run analyze.dart | |
working-directory: analyze | |
run: | | |
dart pub get && dart --enable-asserts analyze.dart | |
- name: Run cocoon_code_health | |
working-directory: dev/cocoon_code_health | |
run: | | |
dart pub get && dart run bin/check.dart | |
- name: Run license check | |
working-directory: licenses | |
run: | | |
dart pub get && dart run check_licenses.dart |