You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
name: Build docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- docs/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v1
|
|
- name: Install Python packages
|
|
run: pip install Sphinx
|
|
- name: Build docs
|
|
run: make -C docs/ html
|
|
|