Skip to content

Commit

Permalink
#307 Made each notebook test a separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Jul 26, 2024
1 parent 211f9b8 commit 5b9341c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/actions/prepare_test_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ description: 'A custom action performing common steps required for running tests
runs:
using: 'composite'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Free disk space with jlumbroso
uses: jlumbroso/free-disk-space@main
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
needs: run-unit-tests

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Prepare Test Environment
uses: ./.github/actions/prepare_test_env.yml

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/notebook_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Prepare Test Environment
uses: ./.github/actions/prepare_test_env.yml

Expand All @@ -32,6 +36,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Prepare Test Environment
uses: ./.github/actions/prepare_test_env.yml

Expand Down

0 comments on commit 5b9341c

Please sign in to comment.