Update feature file to make single file svn behavior more clear #232
Workflow file for this run
This file contains hidden or 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: "Docs" | |
| on: | |
| - pull_request | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install documentation requirements | |
| run: "pip install .[docs] && pip install sphinx_design" | |
| - name: Build docs | |
| run: "make -C doc html" | |
| - name: Build landing-page | |
| run: "make -C doc/landing-page html" |