Skip to content

unittests

unittests #142

Workflow file for this run

name: main unittests
run-name: unittests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
- run: pip install .[all]
- run: make unittest
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- run: pip install .[all]
- run: make unittest
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: pip install .[all]
- run: make unittest
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- run: pip install .[all]
- run: make unittest