Skip to content

Fixes some testing issues #6

Fixes some testing issues

Fixes some testing issues #6

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: python -m venv .venv
- run: . .venv/bin/activate && pip install -U pip && pip install -e ".[dev]"
- run: . .venv/bin/activate && ruff check .
- run: . .venv/bin/activate && black --check .
- run: . .venv/bin/activate && mypy src
- run: . .venv/bin/activate && pytest -q