Skip to content

Commit d26c614

Browse files
committed
break downstream into two jobs
1 parent 4b50bdd commit d26c614

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

.github/workflows/downstream.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: "*"
88

99
jobs:
10-
tests:
10+
downstream1:
1111
runs-on: ubuntu-latest
1212

1313
steps:
@@ -23,15 +23,25 @@ jobs:
2323
package_name: nbclient
2424
env_values: IPYKERNEL_CELL_NAME=\<IPY-INPUT\>
2525

26-
- name: Test ipyparallel
26+
- name: Test jupyter_client
2727
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
2828
with:
29-
package_name: ipyparallel
29+
package_name: jupyter_client
3030

31-
- name: Test jupyter_client
31+
downstream2:
32+
runs-on: ubuntu-latest
33+
34+
steps:
35+
- name: Checkout
36+
uses: actions/checkout@v2
37+
38+
- name: Base Setup
39+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
40+
41+
- name: Test ipyparallel
3242
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
3343
with:
34-
package_name: jupyter_client
44+
package_name: ipyparallel
3545

3646
- name: Test jupyter_kernel_test
3747
run: |

0 commit comments

Comments
 (0)