-
Notifications
You must be signed in to change notification settings - Fork 15
45 lines (40 loc) · 1.22 KB
/
downstream.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Test downstream projects
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: downstream-${{ github.ref }}
cancel-in-progress: true
jobs:
jupyter_server:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
with:
package_name: jupyter_server
package_download_extra_args: --pre
jupyter_client:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
with:
package_name: jupyter_client
package_download_extra_args: --pre
downstream_check: # This job does nothing and is only used for the branch protection
if: always()
needs:
- jupyter_server
- jupyter_client
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}