Skip to content

One-time linting for examples folder (#27) #24

One-time linting for examples folder (#27)

One-time linting for examples folder (#27) #24

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@v4
- name: Install the latest version of uv and set the python version to 3.13
uses: astral-sh/setup-uv@v6
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