Skip to content

Commit 960067a

Browse files
authored
feat: install compatibility check (#1508)
* feat: install clirr check * install an independent action * format changes * change name * change action name
1 parent 894ba37 commit 960067a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci-maven.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,21 @@ jobs:
151151
# Exclude the root project
152152
run: mvn -B -ntp fmt:check
153153

154+
compatibility:
155+
runs-on: ubuntu-22.04
156+
steps:
157+
- uses: actions/checkout@v3
158+
- uses: actions/setup-java@v3
159+
with:
160+
java-version: 11
161+
distribution: temurin
162+
cache: maven
163+
- run: java -version
164+
- name: Compatibility check
165+
# package jar so that gapic-generator-java module can use
166+
# testlib modules of gax
167+
run: mvn package clirr:check -DskipTests
168+
154169
showcase:
155170
runs-on: ubuntu-22.04
156171
strategy:

0 commit comments

Comments
 (0)