Skip to content

Bump actions/checkout from 4 to 6 #25

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #25

Workflow file for this run

name: Lint & Type Check
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install pre-commit
run: pip install pre-commit
- name: Cache pre-commit hooks
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit on all files
run: pre-commit run --all-files