Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
github: build the docs
  • Loading branch information
ThomasWaldmann committed Aug 26, 2023
commit 479b6b5c38ab448c78934d668a3f5140ac53db2b
32 changes: 32 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: docs

on: ["push", "pull_request"]

jobs:
docs:
# We want to run on external PRs, but not on our own internal PRs as they'll be run
# by the push to the branch.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'

- name: Checkout
uses: actions/checkout@v3

- name: Build
shell: bash
run: |
pip install -r requirements.txt
make cython
pip install .

- name: Sphinx Documentation Generator
run: |
pip install tox
tox -e sphinx