Skip to content

Feature/update type hints #195

Feature/update type hints

Feature/update type hints #195

Workflow file for this run

name: Tests
on:
push:
branches: master
pull_request:
branches: master
jobs:
run-tests:
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
os: [ ubuntu-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync
- name: Checks with pre-commit
uses: pre-commit/action@v3.0.1
- name: Test with pytest
run: |
uv run pytest --runslow --durations=0