We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a7032 commit 8e25edaCopy full SHA for 8e25eda
.github/workflows/pr.yml
@@ -8,10 +8,17 @@ jobs:
8
uses: actions/checkout@v2
9
with:
10
ref: ${{ github.event.pull_request.head.sha }}
11
- - name: Set up JDK 11.0.11
12
- uses: actions/setup-java@v1
+
+ - uses: sdkman/sdkman-action@master
13
+ id: sdkman
14
- java-version: 11.0.11
15
+ candidate: java
16
+ version: 11.0.12-sem
17
+ - uses: actions/setup-java@v1
18
+ id: setup-java
19
+ with:
20
+ java-version: 11.0.12
21
+ jdkFile: ${{ steps.sdkman.outputs.file }}
22
- name: Run with Gradle
23
run: ./gradlew clean test --info
24
- uses: kentaro-m/[email protected]
0 commit comments