Skip to content

Update changelog

Update changelog #68

Workflow file for this run

name: Documentation
on: [push, pull_request]
jobs:
build:
name: Build documentation
if:
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
python-version: 3.11
auto-activate-base: false
- name: Install dependencies
run: pip install nox
- name: Build documentation
run: nox -s build-docs