2020-02-21 20:55:03 +00:00
|
|
|
name: "Docs check"
|
|
|
|
# https://github.com/marketplace/actions/sphinx-build
|
|
|
|
|
|
|
|
on:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-03-06 01:44:28 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-02-21 20:55:03 +00:00
|
|
|
- uses: ammaraskar/sphinx-action@master
|
|
|
|
with:
|
|
|
|
# git is requried to clone the docs theme
|
|
|
|
pre-build-command: "apt-get update -y && apt-get install -y git"
|
|
|
|
docs-folder: "docs/"
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|