Imprinter CLI updates #2184
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 docs build" | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Install docs dependencies | |
working-directory: ./docs | |
run: pip3 install -r requirements.txt | |
- name: Build docs | |
working-directory: ./docs | |
run: sphinx-build -M html . _build -W |