Skip to content

Final Fixes for #21 #98

Final Fixes for #21

Final Fixes for #21 #98

Workflow file for this run

name: Tests & Coverage
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install coverage flake8
- name: Run tests with coverage
run: |
coverage run -m unittest discover
coverage report --fail-under=55