test again
All checks were successful
CI / test (push) Successful in 14s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-04 04:05:45 +02:00
parent 1bb7084d97
commit 1f0286015b
2 changed files with 8 additions and 5 deletions

View File

@@ -80,14 +80,16 @@ jobs:
- name: Install package and dev dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .[dev]
python3 -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Lint
run: python3 -m ruff check .
run: .venv/bin/python -m ruff check .
- name: Type-check
run: python3 -m mypy src
run: .venv/bin/python -m mypy src
- name: Test
run: python3 -m pytest
run: .venv/bin/python -m pytest