CI: Build document on GitHub Actions

This commit is contained in:
Takeshi KOMIYA
2020-06-29 02:08:22 +09:00
parent bfde3f3714
commit 67cb8e81b2
2 changed files with 21 additions and 2 deletions

21
.github/workflows/builddoc.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Build document
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y graphviz
pip install -U tox
- name: Run Tox
run: tox -e docs