lightning/.github/workflows/docs-check.yml

18 lines
436 B
YAML
Raw Normal View History

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
- uses: ammaraskar/sphinx-action@master
with:
2020-05-07 13:25:54 +00:00
# git is required 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 }}"