Skip to content

no 'info' yet

no 'info' yet #109

Workflow file for this run

# This workflow runs unit tests
name: Unit tests
on:
workflow_dispatch:
push:
pull_request:
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.x"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
pip install .
pip install -r requirements-dev.txt
- name: Run tests
run: |
make test