Skip to content

Overview and conclusion chapters update #128

Overview and conclusion chapters update

Overview and conclusion chapters update #128

Workflow file for this run

name: QualityContol
on:
pull_request:
branches:
- main
jobs:
quality-control:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setupconda
- name: Install NB-Clean
run: |
pip install nb-clean==2.0.2
- name: Ensure clean notebooks
run: |
python .github/workflows/ensure_clean_notebooks.py
- name: Install pyspellchecker
run: |
pip install pyspellchecker
- name: Custom Spellcheck with Ignore List
run: python .github/workflows/spellcheck.py
# borrowed from https://github.com/ProjectPythia/pythia-foundations/blob/main/.github/workflows/link-checker.yaml
- name: Disable Notebook Execution Before Linkcheck
if: always()
shell: python
run: |
import yaml
with open('./book/_config.yml') as f:
data = yaml.safe_load(f)
data['execute']['execute_notebooks'] = 'off'
with open('./book/_config.yml', 'w') as f:
yaml.dump(data, f)
- name: Check External Links
continue-on-error: true
if: always()
run: |
jb build book --builder linkcheck