Skip to content

Add coverage CI

Add coverage CI #31

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request: {}
workflow_dispatch: {}
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install
run: |
python -m pip install -U pip
pip install --progress-bar off -U setuptools
pip install --progress-bar off ".[test]"
- name: Run Test
run: pytest tests