Add .gitea/workflows/notebook-test.yml
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
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
This commit is contained in:
20
.gitea/workflows/notebook-test.yml
Normal file
20
.gitea/workflows/notebook-test.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
Reference in New Issue
Block a user