Skip to content

Gh as

Gh as #13

Workflow file for this run

name: Build docs
on:
pull_request:
branches:
- main
- genmoz_metrics
# Allows manual run from the Actions tab
workflow_dispatch:
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install packages
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[docs] --index-url=https://packages.idmod.org/api/pypi/pypi-production/simple
- name: Build static files
run: |
mkdocs build