Reorganize project structure (#80) #197
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: build | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install Requirements | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Fetch external sources | |
run: | | |
bash .github/scripts/fetch_external_sources.sh | |
- name: Sphinx build | |
run: | | |
sphinx-build -M html docs build | |
sphinx-build -b linkcheck docs linkcheck | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: build/html |