Skip to content

Fix documentation compilation #1

Fix documentation compilation

Fix documentation compilation #1

Workflow file for this run

name: doc
on:
pull_request:
branches: ["master"]
permissions:
contents: read
env:
python: 3.11
jobs:
check-doc:
steps:

Check failure on line 15 in .github/workflows/doc.yml

View workflow run for this annotation

GitHub Actions / doc

Invalid workflow file

The workflow is not valid. .github/workflows/doc.yml (Line: 15, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v4
- name: Set up Python ${{ env.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.python }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt -r requirements-dev.txt -r docs/requirements.txt
- name: Make docs
run: make -C docs html SPHINXOPTS="--fail-on-warning"