git.delta.rocks / unique-network / refs/commits / abb171fa79dc

difftreelog

source

.github/workflows/ci-master.yml945 Bsourcehistory
1# Workflow which controls starts nested workflows.2name: master34# Triger: PR at 'master' branch with following types of events.5on:6  pull_request:7    branches: [ 'master' ]8    types: [ opened, reopened, synchronize, ready_for_review ]910#Concurency group for control execution queue over github runners.11concurrency:12  group: ${{ github.workflow }}-${{ github.head_ref }}13  cancel-in-progress: true1415# List of a jobs included into Workflow.16jobs:1718  unit-test:19    uses: ./.github/workflows/unit-test_v2.yml2021  node-only-update:22    uses: ./.github/workflows/node-only-update_v2.yml2324  forkless:25    uses: ./.github/workflows/forkless.yml2627  canary:28    uses: ./.github/workflows/canary.yml29    secrets: inherit # pass all secrets from initial workflow to nested3031  xcm:32    uses: ./.github/workflows/xcm.yml33    secrets: inherit # pass all secrets from initial workflow to nested3435  codestyle:36    uses: ./.github/workflows/codestyle_v2.yml