ci: bump the github-actions group across 1 directory with 12 updates #317
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: 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 | |
| UV_LOCKED: true # do not update the lockfile during `uv sync` and `uv run` commands | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| docs: | |
| # disables this workflow from running in a repository that is not part of the indicated organization/user | |
| if: github.repository_owner == 'afuetterer' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Set up just | |
| uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3 | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0 | |
| with: | |
| python-version: '3.13' | |
| enable-cache: true | |
| prune-cache: false | |
| cache-suffix: docs | |
| - run: just sync-docs | |
| - run: just docs-build | |
| 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) }} |