rename + mention in readme #42
Workflow file for this run
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: pr-checks | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
build: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # necessary for git-revision-date-localized-plugin | |
submodules: 'recursive' | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
make install-requirements | |
sudo apt-get install graphviz | |
- name: build graphviz figures | |
run: make graphvizfigures | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Setup Java 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Update OpenAPI docs | |
run: make openapi-update | |
- name: Build docs in strict mode | |
run: .venv/bin/mkdocs build --strict --verbose |