mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
25 lines
543 B
YAML
25 lines
543 B
YAML
![]() |
name: Docs
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
docs:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Set up Python 3.8
|
||
|
uses: actions/setup-python@v1
|
||
|
with:
|
||
|
python-version: 3.8
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
python -m pip install --upgrade pip
|
||
|
pip install -r requirements.txt
|
||
|
- name: Build pycapnp and install
|
||
|
run: |
|
||
|
python setup.py build
|
||
|
pip install .
|
||
|
- name: Build documentation
|
||
|
run: |
|
||
|
sphinx-build docs build/html
|