We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 343c4ee commit 061ce2cCopy full SHA for 061ce2c
1 file changed
.github/workflows/build-and-test.yml
@@ -14,16 +14,11 @@ jobs:
14
with:
15
java-version: '11'
16
distribution: 'adopt'
17
- - name: Cache Maven packages
18
- uses: actions/cache@v2
19
- with:
20
- path: ~/.m2
21
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
22
- restore-keys: ${{ runner.os }}-m2
+ cache: maven
23
- name: Build with Maven
24
run: mvn --batch-mode -show-version --update-snapshots --errors package
25
- name: Publish Unit Test Results
26
uses: EnricoMi/publish-unit-test-result-action@v1
27
- if: always() # also run if build/step step failed
+ if: always() # also run if build step failed
28
29
files: target/surefire-reports/*.xml
0 commit comments