initial commit #2
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: Notebook checks | |
on: | |
push: | |
paths-ignore: | |
- "run.py" | |
jobs: | |
test_job: | |
# If you change this job, please also change it in | |
# build_runner.yaml (and see comments there for explanation) | |
runs-on: ubuntu-latest | |
name: Test notebooks are runnable and up-to-date | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Test | |
uses: ./.github/actions/build | |
with: | |
args: ./run_tests.sh |