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 6659dce commit 3c71e71Copy full SHA for 3c71e71
.github/workflows/build.yml
@@ -18,5 +18,11 @@ jobs:
18
uses: actions/setup-java@v1
19
with:
20
java-version: ${{ matrix.java }}
21
+ - name: Cache Maven packages
22
+ uses: actions/cache@v2
23
+ with:
24
+ path: ~/.m2
25
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
26
+ restore-keys: ${{ runner.os }}-m2
27
- name: Build with Maven
28
run: mvn -Dfailonerror=false -B package
0 commit comments