Remove <T extends Body> generics as unused
#35
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" | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dart-lang/setup-dart@v1 | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run app_dart tests | |
| run: | | |
| cd app_dart | |
| dart pub get | |
| dart test test | |
| - name: Run dart analyze | |
| run: | | |
| cd analyze | |
| dart pub get | |
| dart --enable-asserts analyze.dart | |
| - name: Run code_health | |
| run: | | |
| cd dev/cocoon_code_health | |
| dart pub get | |
| dart run bin/check.dart | |
| - name: Run license check | |
| run: | | |
| cd licenses | |
| dart pub get | |
| dart run check_licenses.dart |