Skip to content

Rename ices to total species #2819

Rename ices to total species

Rename ices to total species #2819

Workflow file for this run

name: docs build
on:
push:
branches:
- development
- main
pull_request:
branches:
- development
env:
# enable color output from Sphinx
FORCE_COLOR: "1"
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pandoc and doxygen
run: |
sudo apt install pandoc doxygen
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: "pip"
- name: Install dependencies
run: pip install -r ./requirements.txt
- name: Build docs
run: |
cd sphinx_docs/
make SPHINXOPTS='-v -W --keep-going' html
- name: Link check
run: |
cd sphinx_docs/
make SPHINXOPTS=-v linkcheck