bugfix: 构建token新增可执行结束节点判定 #239
Workflow file for this run
This file contains 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: PR check | |
on: | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
engine-lint: | |
uses: TencentBlueKing/bamboo-engine/.github/workflows/engine_flake8_and_black.yml@master | |
pipeline-lint: | |
uses: TencentBlueKing/bamboo-engine/.github/workflows/runtime_pipeline_flake8_and_black.yml@master | |
engine-unittest: | |
needs: engine-lint | |
uses: TencentBlueKing/bamboo-engine/.github/workflows/engine_unittest.yml@master | |
pipeline-unittest: | |
needs: pipeline-lint | |
uses: TencentBlueKing/bamboo-engine/.github/workflows/runtime_pipeline_unittest.yml@master | |
runtime-pipeline-intergration-test: | |
needs: [engine-unittest, pipeline-unittest] | |
uses: TencentBlueKing/bamboo-engine/.github/workflows/runtime_pipeline_end_to_end_test.yml@master | |
pipeline-intergration-test: | |
needs: pipeline-unittest | |
uses: TencentBlueKing/bamboo-engine/.github/workflows/pipeline_end_to_end_test.yml@master |