From 938c48a5cc0bd3c6cf4a7170a4c56b9382b911e2 Mon Sep 17 00:00:00 2001 From: chvmvd Date: Thu, 9 Feb 2023 15:36:52 +0900 Subject: [PATCH] Setup notebook-execution-test --- .github/workflows/deploy.yml | 2 +- .github/workflows/notebook-execution-test.yml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/notebook-execution-test.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b7feddbdb..bc88ed886 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout Code uses: actions/checkout@v3 - - name: Execute notebooks + - name: Execute Notebooks uses: ./.github/actions/execute_notebooks - name: Build diff --git a/.github/workflows/notebook-execution-test.yml b/.github/workflows/notebook-execution-test.yml new file mode 100644 index 000000000..7cb503654 --- /dev/null +++ b/.github/workflows/notebook-execution-test.yml @@ -0,0 +1,17 @@ +--- +name: Notebook Execution Test + +on: + pull_request: + branches: [main, master] + +jobs: + notebook-execution-test: + name: Notebook Execution Test + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Execute Notebooks + uses: ./.github/actions/execute_notebooks