From 2f9ce66c65a9e81ea37fdbbc33041572c3bf03a5 Mon Sep 17 00:00:00 2001 From: Joe Wang <106995533+JoeWang1127@users.noreply.github.com> Date: Mon, 20 Mar 2023 16:29:42 +0000 Subject: [PATCH] feat: install compatibility check (#1508) * feat: install clirr check * install an independent action * format changes * change name * change action name --- .github/workflows/ci-maven.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci-maven.yaml b/.github/workflows/ci-maven.yaml index 2540ce063b..7c0ed6333d 100644 --- a/.github/workflows/ci-maven.yaml +++ b/.github/workflows/ci-maven.yaml @@ -151,6 +151,21 @@ jobs: # Exclude the root project run: mvn -B -ntp fmt:check + compatibility: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + java-version: 11 + distribution: temurin + cache: maven + - run: java -version + - name: Compatibility check + # package jar so that gapic-generator-java module can use + # testlib modules of gax + run: mvn package clirr:check -DskipTests + showcase: runs-on: ubuntu-22.04 strategy: