This is an automated email from the ASF dual-hosted git repository.
mdedetrich pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-grpc.git
The following commit(s) were added to refs/heads/main by this push:
new 5590d099 Split header check into its own github workflow
5590d099 is described below
commit 5590d099edd707e2ec93c2b223ceed0904f0f433
Author: Matthew de Detrich <[email protected]>
AuthorDate: Tue Apr 4 13:03:01 2023 +0200
Split header check into its own github workflow
---
.github/workflows/build-test.yml | 2 +-
.github/workflows/headers.yml | 30 ++++++++++++++++++++++++++++++
2 files changed, 31 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 3821e30d..4ecb1ce8 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -42,7 +42,7 @@ jobs:
- name: Binary-compatibility check
run: |-
cp .jvmopts-ci .jvmopts
- sbt headerCheckAll grpcVersionSyncCheck
googleProtobufVersionSyncCheck +mimaReportBinaryIssues
+ sbt grpcVersionSyncCheck googleProtobufVersionSyncCheck
+mimaReportBinaryIssues
compile-benchmarks:
name: Compile Benchmarks
diff --git a/.github/workflows/headers.yml b/.github/workflows/headers.yml
new file mode 100644
index 00000000..6eda4f3a
--- /dev/null
+++ b/.github/workflows/headers.yml
@@ -0,0 +1,30 @@
+name: Headers
+
+on:
+ pull_request:
+
+permissions: {}
+
+jobs:
+ check-headers:
+ name: Check headers
+ runs-on: ubuntu-20.04
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Setup Java 8
+ uses: actions/setup-java@v3
+ with:
+ distribution: temurin
+ java-version: 8
+
+ - name: Cache Coursier cache
+ uses: coursier/[email protected]
+
+ - name: Check headers
+ run: |-
+ sbt \
+ -Dsbt.override.build.repos=false \
+ -Dsbt.log.noformat=false \
+ +headerCheckAll
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]