chore: switch to pre-commit-uv #198
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: Checks | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review # this is needed to trigger checks, when an auto-generated "draft" PR is set for "ready for review". | |
concurrency: | |
group: pr-${{ github.head_ref }} | |
cancel-in-progress: true | |
# Set permissions at the job level. | |
permissions: {} | |
env: | |
PYTHONUNBUFFERED: 1 | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
docs: | |
permissions: | |
contents: write | |
uses: ./.github/workflows/docs.yml | |
required-checks-pass: | |
if: always() | |
needs: | |
- test | |
- docs | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2 | |
with: | |
jobs: ${{ toJSON(needs) }} |