16 fix unable to run the training job #16
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: Check | |
on: | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: uv sync --group=checks | |
- run: uv run invoke checks.format | |
- run: uv run invoke checks.type | |
- run: uv run invoke checks.code | |
- run: uv run invoke checks.security | |
- run: uv run invoke checks.coverage |