Skip to content

Link to GitHub for source code #312

Link to GitHub for source code

Link to GitHub for source code #312

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies and build
run: |
python3 -m pip install -U poetry
python3 -m poetry install
python3 -m poetry run mkdocs build --strict