Skip to content

Package update

Package update #4

Workflow file for this run

name: Build docs
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
if: ${{ github.repository == 'slaclab/lume-model' }}
runs-on: ubuntu-latest
name: Build docs
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.9
mamba-version: "*"
channels: conda-forge
activate-environment: lume-model-dev
- name: Build package
shell: bash -l {0}
run: |
pip install -e ".[docs]"
- name: Build docs
shell: bash -l {0}
run: |
mkdocs build