Skip to content

Smaller fixes (#76) #106

Smaller fixes (#76)

Smaller fixes (#76) #106

Workflow file for this run

name: Doctest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
doctest:
runs-on: ubuntu-latest
steps:
# Check out the repository code
- name: Checkout repository
uses: actions/checkout@v4
# Set up Python
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10' # Only for one python version to save on resources
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip list
# Change the directory to the docs directory.
- name: Go to docs
run: |
cd docs
# Do the doctest
- name: Doctest
run: |
cd docs
make doctest