We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8121e2 commit afd1f58Copy full SHA for afd1f58
.github/workflows/pipeline_check.yml
@@ -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