Skip to content

Test documentation #843

Test documentation

Test documentation #843

Workflow file for this run

name: Test documentation
on:
pull_request:
push:
schedule:
- cron: "0 2 * * *" # run at 2 AM UTC
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Cancel Workflow Action
uses: styfle/cancel-workflow-action@0.9.1
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
make install
sudo apt install pandoc
- name: Test documentation
run: |
cd docs
make html