Files
PINA/.github/workflows/testing_doc.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 18: mapping key "uses" already defined at line 17
2025-03-19 17:48:29 +01:00

21 lines
386 B
YAML

name: Test Sphinx Documentation Build
on:
pull_request:
branches:
- "master"
- "0.2"
paths:
- 'docs/**'
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Doc
uses: actions/checkout@v2
uses: ammaraskar/sphinx-action@7.4.7
with:
pre-build-command: "python3 -m pip install .[doc]"
docs-folder: "docs/"