Skip to content

resolved comments

resolved comments #89

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
paths:
- .github/workflows/tests.yaml
- src/**
- test/**
- tox.ini
jobs:
run_tests:
name: Run project tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install tox
- name: Run tests for ${{ matrix.python-version }}
run: |
python -m tox