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 68c2baf commit 149def6Copy full SHA for 149def6
.github/workflows/mvn.yml
@@ -16,15 +16,14 @@ jobs:
16
java: [1.8, 11, 13]
17
steps:
18
- uses: actions/checkout@v3
19
- - name: Set up JDK
20
- uses: actions/setup-java@v3
+ - uses: actions/setup-java@v3
21
with:
+ distribution: 'temurin'
22
java-version: ${{ matrix.java }}
23
- uses: actions/cache@v3
24
25
path: ~/.m2/repository
26
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
27
restore-keys: |
28
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
29
- - name: Build it with Maven
30
- run: mvn -B verify -Pqulice
+ - run: mvn -B verify -Pqulice
0 commit comments