Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.

Feature/cap 236 guild #798

Feature/cap 236 guild

Feature/cap 236 guild #798

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Run pre-commit hooks
run: |
pre-commit install
pre-commit run --all-files
- name: Run tests with pytest
run: |
pip install -e .
pytest --cov=src --cov-report=xml --cov-report=term-missing