Improved doc string for jp_fetch to include how to provide query para… #72
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) }} |