Files
openzfs-docs/.github/workflows/pull_request.yml
George Melikov 1f2ff88863 Use upstream sphinx-notfound-page module instead of fork
We waited for changes to make 404s work properly
(absolute links with prefix).
It's in master now, use it.

Signed-off-by: George Melikov <mail@gmelikov.ru>
2021-10-24 21:07:32 +03:00

27 lines
631 B
YAML

name: Pull Request Docs Check
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
sudo apt-get update -y
sudo apt-get install -y git python3-pip mandoc
pip install -r docs/requirements.txt
- name: Gen_man_pages
run: make man
- name: Gen_feature_matrix
run: make feature_matrix
- name: Gen_sphinx
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
- uses: actions/upload-artifact@v2
with:
name: DocumentationHTML
path: docs/_build/html/