Skip to content

Add test status badge #27

Add test status badge

Add test status badge #27

Workflow file for this run

name: main
on: [push]
jobs:
tests:
name: Run Test Suite
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -e ".[dev, cli]"
- run: coverage run -m pytest
- run: coverage xml
- uses: codecov/codecov-action@v2