Skip to content

Fix syntax errors in the docs workflow #8

Fix syntax errors in the docs workflow

Fix syntax errors in the docs workflow #8

Workflow file for this run

name: Build docs
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with: |
sudo apt-get install pandoc
python-version: ${{ matrix.python-version }}
- run: pip install tox
- name: Build sphinx docs
run: tox -e docs