Skip to content

Update to latest versions of github actions #210

Update to latest versions of github actions

Update to latest versions of github actions #210

Workflow file for this run

name: Docs Test
on: push
jobs:
doctest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Check documentation for errors
run: invoke docs