Skip to content

GitHub Actions: Pin versions for actions #19

GitHub Actions: Pin versions for actions

GitHub Actions: Pin versions for actions #19

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
run-linter:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install the latest version of uv and set the python version to 3.13
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
with:
python-version: 3.13
activate-environment: true
- name: Install pre-commit
run: uv sync --group lint
- name: pre-commit
run: uv run pre-commit run --all-files --verbose