Skip to content

Commit

Permalink
Add doc build
Browse files Browse the repository at this point in the history
  • Loading branch information
tpeulen committed Feb 4, 2024
1 parent 4d604d5 commit 91b1394
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches:
- master
- develop

jobs:
build:
name: Build Documentation
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: doc
environment-file: doc/environment.yml
python-version: 3.9
mamba-version: "*"
channels: conda-forge,tpeulen,defaults
channel-priority: true
auto-activate-base: false
- run: |
conda info
conda list
cd doc
make

0 comments on commit 91b1394

Please sign in to comment.