Skip to content

downstream_tests

downstream_tests #454

name: downstream_tests
on:
workflow_run: # zizmor: ignore[dangerous-triggers]
workflows: [packages]
types: [completed]
workflow_dispatch:
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
downstream_tests:
name: Run downstream tests
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
strategy:
matrix:
downstream_repo: [hvplot, geoviews]
fail-fast: false
steps:
- uses: holoviz-dev/holoviz_tasks/downstream-tests@1a9884850782b0b80ba2e91b573e7d63d9d3c3dc # v1.0.1
with:
downstream_repo: ${{ matrix.downstream_repo }}
github_token: ${{ secrets.ACCESS_TOKEN }}