Skip to content

Update tests

Update tests #2

Workflow file for this run

name: tests
on:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [ '3.12' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install --upgrade pip
pip install --upgrade build
pip install -e .[test]
- name: Run unit-tests
run: pytest -v -m unit