Add scaffold split explanation and demo to regression chapter #450
Workflow file for this run
This file contains hidden or 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: check-book | |
| on: | |
| push: | |
| branches: [main, v2] | |
| pull_request: | |
| branches: [main, v2] | |
| jobs: | |
| check-build-book: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update && sudo apt-get install -y graphviz libgraphviz-dev | |
| pip install pygraphviz tensorflow | |
| pip install -e package/ | |
| - name: Check pre-commit | |
| run: | | |
| pip install pre-commit | |
| pre-commit run --all-files || ( git status --short ; git diff ; exit 1 ) | |
| - name: Build the book (structure check, no execution) | |
| run: jupyter-book build -n . | |
| - name: Link Checker | |
| uses: lycheeverse/lychee-action@v2 | |
| continue-on-error: true | |
| id: lc | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| args: --verbose --exclude rdkit.org/xml --max-redirects 100 --no-progress _build/html/dl/**/*.html _build/html/ml/**/*.html _build/html/applied/**/*.html _build/html/*.html | |
| fail: true |