Skip to content

Release v0.8.0

Release v0.8.0 #45

Workflow file for this run

name: Run pytests
on:
pull_request:
branches: [master, dev]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.12"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install .
- name: Install test dependancies
run: python -m pip install -r requirements/requirements-test.txt
- name: Run pytest tests
run: pytest tests --cov=./ --cov-report=xml