Skip to content

Commit

Permalink
Create build_sphinx.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiDrang committed Jan 18, 2025
1 parent 8be7ae6 commit c13f608
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build_sphinx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Sphinx docs

on:
push:
branches: [ "main" ]
paths:
- '.github/workflows/build_sphinx.yml'
- 'src/**'
- 'docs/**'
- 'files/**'

jobs:
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11.6

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

- name: Build docs
run: make doc

0 comments on commit c13f608

Please sign in to comment.