Skip to content

Reorganize project structure (#80) #197

Reorganize project structure (#80)

Reorganize project structure (#80) #197

Workflow file for this run

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