Skip to content

Release v25090091

Release v25090091 #425

Workflow file for this run

# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master
# Workflow which controls starts nested workflows.
name: master
# Triger: PR at 'master' branch with following types of events.
on:
pull_request:
branches: [ 'master' ]
types: [ opened, reopened, synchronize, ready_for_review ]
#Concurency group for control execution queue over github runners.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
# List of a jobs included into Workflow.
jobs:
deno-dev:
uses: ./.github/workflows/deno-dev.yml
secrets: inherit
unit-test:
uses: ./.github/workflows/unit-test.yml
secrets: inherit
xcm:
uses: ./.github/workflows/xcm.yml
secrets: inherit # pass all secrets from initial workflow to nested
offchain-worker:
uses: ./.github/workflows/offchain-worker.yml
secrets: inherit
collator-selection:
uses: ./.github/workflows/collator-selection.yml
secrets: inherit
main-process:
uses: ./.github/workflows/main-process-update.yml
secrets: inherit
try-runtime:
uses: ./.github/workflows/try-runtime.yml
secrets: inherit # pass all secrets from initial workflow to nested
governance:
uses: ./.github/workflows/governance.yml
secrets: inherit
codestyle:
uses: ./.github/workflows/codestyle.yml
secrets: inherit
polkadot-types:
uses: ./.github/workflows/polkadot-types.yml