Skip to content

Commit

Permalink
Merge pull request #82 from Saityi/run-notebooks-in-ci
Browse files Browse the repository at this point in the history
Run Jupyter notebook examples in Github Actions as a sanity check on changes
  • Loading branch information
Xiaoyan-Li authored Sep 6, 2023
2 parents 2dea56c + 5e03b40 commit 0691f8d
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 6,016 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
matrix:
julia-version: ['1.9']
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/validate-notebooks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Check notebook examples for regressions

on: [push, pull_request]

env:
JULIA_NUM_THREADS: 'auto'
jobs:
notebooks-examples-regression-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.9
- name: Cache Julia dependencies
uses: julia-actions/cache@v1
- name: Add IJulia Jupyter kernel
run: julia --color=yes --project=. -e 'ENV["JULIA_PKG_PRECOMPILE_AUTO"]=0; using Pkg; pkg"add IJulia"'
- name: Install Julia dependencies
run: julia --color=yes --project=. -e 'import Pkg; Pkg.instantiate(); Pkg.resolve(); Pkg.precompile()'
- uses: yaananth/run-notebook@v2
env:
RUNNER: ${{ toJson(runner) }}
SECRETS: ${{ toJson(secrets) }}
GITHUB: ${{ toJson(github) }}
with:
notebook: "examples/full_fledged_schema_examples_new/stratification/diabetes_diagnose.ipynb"
- uses: yaananth/run-notebook@v2
env:
RUNNER: ${{ toJson(runner) }}
SECRETS: ${{ toJson(secrets) }}
GITHUB: ${{ toJson(github) }}
with:
notebook: "examples/full_fledged_schema_examples_new/composition/diabetes_model.ipynb"
- uses: yaananth/run-notebook@v2
env:
RUNNER: ${{ toJson(runner) }}
SECRETS: ${{ toJson(secrets) }}
GITHUB: ${{ toJson(github) }}
with:
notebook: "examples/full_fledged_schema_examples_new/CausalLoopDiagrams/convert_from_SEIR_stockFlowDiagram.ipynb"
- uses: actions/upload-artifact@v3
if: always()
with:
name: output
path: ${{ RUNNER.temp }}/nb-runner
env:
RUNNER: ${{ toJson(runner) }}
Loading

0 comments on commit 0691f8d

Please sign in to comment.