Skip to content

Add Composition.set_random() (#728) #1280

Add Composition.set_random() (#728)

Add Composition.set_random() (#728) #1280

Workflow file for this run

name: docs build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- 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: Install pynucastro
run: pip install .
- name: Build docs
run: |
cd docs/
make SPHINXOPTS='-v -W --keep-going -n' html
- name: Check links
run: |
cd docs/
make SPHINXOPTS=-v linkcheck