mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
Update cover-baseline.yml
fix java version
This commit is contained in:
parent
86b6a851bd
commit
653987e247
1 changed files with 9 additions and 0 deletions
9
.github/workflows/cover-baseline.yml
vendored
9
.github/workflows/cover-baseline.yml
vendored
|
@ -11,6 +11,9 @@ concurrency:
|
|||
jobs:
|
||||
Test:
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ '17' ]
|
||||
env:
|
||||
JVM_ARGS: -Xmx8192m
|
||||
steps:
|
||||
|
@ -18,6 +21,12 @@ jobs:
|
|||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up JDK ${{matrix.java}}
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: ${{matrix.java}}
|
||||
distribution: 'adopt'
|
||||
cache: maven
|
||||
- name: Compile project
|
||||
run: mvn --batch-mode --no-transfer-progress clean compile
|
||||
- name: Download Diffblue Cover
|
||||
|
|
Loading…
Reference in a new issue