Skip to content

Release 3.9.0

Release 3.9.0 #364

Workflow file for this run

name: Unit Tests
on: [ push ]
jobs:
unit_tests:
name: Unit Tests
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: [ "3.12" ]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.test.txt
- name: Run unit tests
run: |
pytest