Skip to content

Commit afd1f58

Browse files
committed
ci: create check pipeline
Defines jobs that must run for PR to be merged
1 parent e8121e2 commit afd1f58

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/pipeline_check.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Check pipeline
3+
on: # yamllint disable-line rule:truthy
4+
workflow_dispatch:
5+
push:
6+
branches: ['*']
7+
jobs:
8+
bazel_build:
9+
uses: ./.github/workflows/bazel_build.yml
10+
bazel_test:
11+
uses: ./.github/workflows/bazel_test.yml
12+
bazel_buildifier:
13+
uses: ./.github/workflows/bazel_buildifier.yml
14+
check_pipeline:
15+
uses: ./.github/workflows/check_pipeline.yml
16+
check_pr_description:
17+
uses: ./.github/workflows/check_pr_description.yml
18+
clang_tidy:
19+
uses: ./.github/workflows/clang_tidy.yml
20+
gitlint:
21+
uses: ./.github/workflows/gitlint.yml
22+
yamllint:
23+
uses: ./.github/workflows/yamllint.yml

0 commit comments

Comments
 (0)