Skip to content

ci: bump the github-actions group with 3 updates #285

ci: bump the github-actions group with 3 updates

ci: bump the github-actions group with 3 updates #285

Workflow file for this run

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up uv
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
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) }}