Skip to content

Lint

Lint #5271

Workflow file for this run

---
name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# * is a special character in YAML so you have to quote this string
# Run at 1:00 every day
- cron: '0 1 * * *'
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# We do not use the cache action as uv is faster than the cache action.
- name: "Install dependencies"
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install --system --upgrade --editable .[dev]
- name: "Lint"
run: |
pre-commit run --all-files --hook-stage commit --verbose
pre-commit run --all-files --hook-stage push --verbose
pre-commit run --all-files --hook-stage manual --verbose
- uses: pre-commit-ci/lite-action@v1.0.2
if: always()