PET tests #35
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: PET tests | |
on: | |
workflow_dispatch: | |
inputs: | |
run-id: | |
description: 'run-id to download the snaps, if not provided we will use the latest ones.' | |
required: false | |
network: | |
description: 'Network to use, default kusama' | |
default: 'kusama' | |
type: choice | |
options: | |
- kusama | |
- polkadot | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
jobs: | |
pet_tests: | |
# run by demand | |
uses: ./.github/workflows/pet-common.yml | |
with: | |
network: ${{ inputs.network }} | |
run-id: ${{ inputs.run-id }} |