Skip to content

Commit d46c4b5

Browse files
committed
clean up ci config
1 parent 221dca6 commit d46c4b5

File tree

3 files changed

+23
-12
lines changed

3 files changed

+23
-12
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Check Release
22
on:
33
push:
4-
branches: ["master"]
4+
branches: ["main"]
55
pull_request:
6-
branches: ["*"]
76

87
concurrency:
98
group: check-release-${{ github.ref }}

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: ipykernel tests
22

33
on:
44
push:
5-
branches: "master"
5+
branches: ["main"]
66
pull_request:
7-
branches: "*"
87

98
concurrency:
109
group: ci-${{ github.ref }}

.github/workflows/downstream.yml

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ name: Test downstream projects
22

33
on:
44
push:
5-
branches: "master"
5+
branches: ["main"]
66
pull_request:
7-
branches: "*"
87

98
concurrency:
109
group: downstream-${{ github.ref }}
1110
cancel-in-progress: true
1211

1312
jobs:
14-
downstream1:
13+
nbclient:
1514
runs-on: ubuntu-latest
1615

1716
steps:
@@ -21,18 +20,25 @@ jobs:
2120
- name: Base Setup
2221
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2322

24-
- name: Test nbclient
23+
- name: Run Test
2524
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
2625
with:
2726
package_name: nbclient
2827
env_values: IPYKERNEL_CELL_NAME=\<IPY-INPUT\>
2928

30-
- name: Test jupyter_client
29+
jupyter_client:
30+
- name: Checkout
31+
uses: actions/checkout@v2
32+
33+
- name: Base Setup
34+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
35+
36+
- name: Run Test
3137
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
3238
with:
3339
package_name: jupyter_client
3440

35-
downstream2:
41+
ipyparallel:
3642
runs-on: ubuntu-latest
3743

3844
steps:
@@ -42,12 +48,19 @@ jobs:
4248
- name: Base Setup
4349
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
4450

45-
- name: Test ipyparallel
51+
- name: Run Test
4652
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
4753
with:
4854
package_name: ipyparallel
4955

50-
- name: Test jupyter_kernel_test
56+
jupyter_kernel_test:
57+
- name: Checkout
58+
uses: actions/checkout@v2
59+
60+
- name: Base Setup
61+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
62+
63+
- name: Run Test
5164
run: |
5265
git clone https://github.com/jupyter/jupyter_kernel_test.git
5366
cd jupyter_kernel_test

0 commit comments

Comments
 (0)