Low Pass Filter Logic Function #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Sphinx HTML compile | |
# Runs on pushes to pull request | |
on: pull_request | |
jobs: | |
# Build job | |
build: | |
name: Test Compile Sphinx HTML | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Sphinx | |
run: | | |
sudo apt install python3-sphinx-rtd-theme | |
- name: Build with sphinx | |
run: make html SPHINXOPTS="-W" | |
working-directory: doc |