Skip to content

Fix python testing, add testing up to 3.13 #87

Fix python testing, add testing up to 3.13

Fix python testing, add testing up to 3.13 #87

Workflow file for this run

name: Unit tests
on:
workflow_call:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[test,dev]
- name: Check static typing
run: mypy sphinxcontrib
- name: test with pytest
run: pytest --color=yes --cov --cov-report=xml tests
- name: coverage
run: coverage xml
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true