diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-06-29 02:08:22 +0900 |
|---|---|---|
| committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-06-29 02:12:46 +0900 |
| commit | 67cb8e81b2ba5fecc576db3aff52c172d44fab84 (patch) | |
| tree | 678b81259e9d486eda180792c444b9e813045d52 /.github/workflows | |
| parent | bfde3f3714c72fcc3d8b3e1ddb2c8ee3861b763b (diff) | |
| download | sphinx-git-67cb8e81b2ba5fecc576db3aff52c172d44fab84.tar.gz | |
CI: Build document on GitHub Actions
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/builddoc.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/builddoc.yml b/.github/workflows/builddoc.yml new file mode 100644 index 000000000..809fb68e6 --- /dev/null +++ b/.github/workflows/builddoc.yml @@ -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 |
