Run notebooks on RTD with sphinx-gallery and add WorkGraph tutorials #877
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: continuous-integration | |
on: | |
push: | |
# only pushes to main trigger | |
branches: [main] | |
pull_request: | |
# always triggered | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- uses: pre-commit/action@v2.0.0 | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-version: latest | |
use-mamba: true | |
channels: conda-forge, defaults | |
environment-file: environment.yml | |
python-version: "3.11" | |
activate-environment: aiida-tutorials # updating base causes conflicts so we create a new env | |
- name: "Build HTML docs" | |
run: | | |
conda init | |
source /home/runner/.bashrc | |
conda activate aiida-tutorials | |
rabbitmq-server -detached | |
sleep 10 | |
rabbitmq-diagnostics status | |
verdi presto | |
verdi daemon start | |
verdi status | |
aiida-pseudo install sssp -x PBEsol | |
verdi group list | |
cat /proc/cpuinfo | grep processor | wc -l | |
make -C docs html linkcheck | |
env: | |
SPHINXOPTS: -nW --keep-going |