Fix testLatestDeps (#5490)

This commit is contained in:
Trask Stalnaker 2022-03-02 20:23:13 -08:00 committed by GitHub
parent 786e79fbda
commit 93f10964d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -34,14 +34,14 @@ jobs:
- uses: actions/checkout@v3
- name: Set up JDK 11 for running Gradle
if: ${{ inputs.skipped }}
if: ${{ !inputs.skip }}
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11
- name: Test
if: ${{ inputs.skipped }}
if: ${{ !inputs.skip }}
uses: gradle/gradle-build-action@v2
with:
arguments: test -PtestLatestDeps=true ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}