Skip to content

Tutorial on nuclear quantum effects #25

Tutorial on nuclear quantum effects

Tutorial on nuclear quantum effects #25

Workflow file for this run

name: test website
on:
workflow_dispatch:
pull_request:
branches:
- main
types: [opened, edited, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache conda
uses: actions/cache@v4
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda-${{hashFiles('environment.yml') }}
- uses: conda-incubator/setup-miniconda@v3
name: Install dependencies
with:
python-version: 3.12
environment-file: environment.yml
auto-activate-base: false
miniforge-variant: Miniforge3
use-mamba: true
- name: Describe environment
run: |
pwd
ls
conda list
- name: Build Sphinx documentation
run: |
make html