Skip to content

WIP: Add integration testing and github actions #9

WIP: Add integration testing and github actions

WIP: Add integration testing and github actions #9

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .[tests]
- run: pytest -sv
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4