Skip to content

Create dracor-textbook.code-workspace #6

Create dracor-textbook.code-workspace

Create dracor-textbook.code-workspace #6

Workflow file for this run

# (paste the YAML above)
name: ci-book
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Verify Jupyter Book builds (no deploy)
run: |
jupyter-book clean . --all
jupyter-book build . --all