Skip to content

Migration

Migration #3

Workflow file for this run

name: test-and-lint
on:
pull_request:
branches: [ master, main ]
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests/ -v
- name: Run pre-commit
run: uv run pre-commit run --all-files