Skip to content

Update actions in workflow #11

Update actions in workflow

Update actions in workflow #11

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
cache: pip
- name: Install dependencies
run: pip install .[dev]
- name: Run pre-commit checks
run: pre-commit run --all-files --show-diff-on-failure