Skip to content

Bump actions/setup-python from 5 to 6 #92

Bump actions/setup-python from 5 to 6

Bump actions/setup-python from 5 to 6 #92

Workflow file for this run

name: Lint and test
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install pre-commit
run: pipx install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: "3.10"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest scripts/filter.py