Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 5s
.NET Test / dotnet-test (push) Failing after 16s
Go Test / go-test (push) Failing after 15s
Java Test / java-hello (push) Successful in 31s
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-test (push) Has been cancelled
Julia Test / julia-test (push) Has been cancelled
Notebook Test / nb-test (push) Has been cancelled
PHP Test / php-test (push) Has been cancelled
Python Test / python-hello (push) Has been cancelled
R Test / r-cmdcheck (push) Has been cancelled
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
21 lines
398 B
YAML
21 lines
398 B
YAML
name: Notebook Test
|
|
on: [push]
|
|
|
|
jobs:
|
|
nb-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: Install papermill
|
|
run: pip install papermill
|
|
|
|
- name: Execute notebooks
|
|
run: |
|
|
papermill notebook.ipynb output.ipynb
|