Skip to content

Commit

Permalink
feat(docs): add test build to GH CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua committed Jun 14, 2024
1 parent 673b52d commit 5d27051
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docs

on: [push, pull_request]

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'docs/requirements.txt'

- name: Install dependencies
run: pip install -r docs/requirements.txt

- name: Build docs
run: |
cd docs
make html

0 comments on commit 5d27051

Please sign in to comment.