Skip to content

Refactor author information in scripts and add documentation build wo… #1

Refactor author information in scripts and add documentation build wo…

Refactor author information in scripts and add documentation build wo… #1

Workflow file for this run

name: Build Docs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Build MkDocs site
run: mkdocs build --clean
- name: Upload built site
uses: actions/upload-artifact@v4
with:
name: mkdocs-site
path: site