git.delta.rocks / unique-network / refs/commits / 21801bf941c9

difftreelog

source

.github/workflows/ci-master.yml1.1 KiBsourcehistory
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master2# Workflow which controls starts nested workflows.3name: master45# Triger: PR at 'master' branch with following types of events.6on:7  pull_request:8    branches: [ 'master' ]9    types: [ opened, reopened, synchronize, ready_for_review ]1011#Concurency group for control execution queue over github runners.12concurrency:13  group: ${{ github.workflow }}-${{ github.head_ref }}14  cancel-in-progress: true1516# List of a jobs included into Workflow.17jobs:1819  unit-test:20    uses: ./.github/workflows/unit-test.yml2122  node-only-update:23    uses: ./.github/workflows/node-only-update.yml2425  forkless:26    uses: ./.github/workflows/forkless.yml2728  # canary:29  #   uses: ./.github/workflows/canary.yml30  #   secrets: inherit # pass all secrets from initial workflow to nested3132  xcm:33    uses: ./.github/workflows/xcm.yml34    secrets: inherit # pass all secrets from initial workflow to nested3536  # testnet:37  #   uses: ./.github/workflows/testnet-build.yml38  #   secrets: inherit # pass all secrets from initial workflow to nested3940  codestyle:41    uses: ./.github/workflows/codestyle.yml