Skip to content

Commit

Permalink
Add downstream checks (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Nov 4, 2023
1 parent 7ec98f3 commit 5e4ad31
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Test downstream projects

on:
push:
branches: ["main"]
pull_request:

concurrency:
group: downstream-${{ github.ref }}
cancel-in-progress: true

jobs:
ipykernel:
runs-on: ubuntu-latest
timeout-minutes: 15
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: ipykernel

ipywidgets:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Run Test
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
with:
package_name: ipywidgets
test_command: pytest -vv -raXxs -k \"not deprecation_fa_icons and not tooltip_deprecation and not on_submit_deprecation\" -W default --durations 10 --color=yes

downstream_check: # This job does nothing and is only used for the branch protection
if: always()
needs:
- ipykernel
- ipywidgets
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) }}

0 comments on commit 5e4ad31

Please sign in to comment.