Skip to content

Commit

Permalink
Remove "Gradle" from CI job step names (#693)
Browse files Browse the repository at this point in the history
We only build with Gradle, so we don't need that info in the step name. No code affected.
  • Loading branch information
msridhar authored Dec 8, 2022
1 parent f6408c6 commit edef55a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ jobs:
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Build and test using Gradle, Java 8, and Error Prone ${{ matrix.epVersion }}
- name: Build and test using Java 8 and Error Prone ${{ matrix.epVersion }}
env:
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }}
uses: gradle/gradle-build-action@v2
with:
arguments: build
if: matrix.java == '8'
- name: Build and test using Gradle, Java 11, and Error Prone ${{ matrix.epVersion }}
- name: Build and test using Java 11 and Error Prone ${{ matrix.epVersion }}
env:
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }}
uses: gradle/gradle-build-action@v2
with:
arguments: verGJF build
if: matrix.java == '11'
- name: Build and test using Gradle, Java 17, and Error Prone ${{ matrix.epVersion }}
- name: Build and test using Java 17 and Error Prone ${{ matrix.epVersion }}
env:
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }}
uses: gradle/gradle-build-action@v2
Expand Down

0 comments on commit edef55a

Please sign in to comment.