mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
23 lines
605 B
YAML
23 lines
605 B
YAML
name: Test Documentation Build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test_docs:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10"]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: pip
|
|
- name: Install dependencies for docs
|
|
run: |
|
|
python -m pip install -r docs/requirements.txt
|
|
- name: Build documentation
|
|
run: |
|
|
cd docs && make clean && make html
|