Skip to content

Commit

Permalink
workflows: add docs workflow.
Browse files Browse the repository at this point in the history
Signed-off-by: Eder Julian <[email protected]>
  • Loading branch information
ederjc committed Sep 13, 2024
1 parent 5241c67 commit 32e3ca1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build docs

on:
push:
pull_request:
paths:
- docs/**

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install Python packages
run: pip install -r docs/requirements.txt
- name: Build docs
run: make -C docs/ html

0 comments on commit 32e3ca1

Please sign in to comment.