From 72e08877cae98178bb3dc69b730c23bd613b3be6 Mon Sep 17 00:00:00 2001 From: JacobTh98 Date: Wed, 25 Oct 2023 14:54:55 +0200 Subject: [PATCH] Set continue-on-error to false. --- .github/workflows/run_nb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_nb.yml b/.github/workflows/run_nb.yml index 4648ea9..b37abdb 100644 --- a/.github/workflows/run_nb.yml +++ b/.github/workflows/run_nb.yml @@ -51,7 +51,7 @@ jobs: cat notebooks.txt | while read -r notebook; do jupyter nbconvert --to notebook --execute --inplace "$notebook" done - continue-on-error: true # Set to false for PullRequest + continue-on-error: false shell: bash - name: Check for errors