Skip to content

add readthedocs config #64

add readthedocs config

add readthedocs config #64

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
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- 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