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.
2 parents 0ba02a3 + afa92a1 commit 5333acaCopy full SHA for 5333aca
.github/workflows/maven.yml
@@ -34,6 +34,13 @@ jobs:
34
uses: actions/setup-java@v1
35
with:
36
java-version: ${{ matrix.java }}
37
+ - name: Cache local Maven repository
38
+ uses: actions/cache@v2
39
+ with:
40
+ path: ~/.m2/repository
41
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
42
+ restore-keys: |
43
+ ${{ runner.os }}-maven-
44
- name: Build with Maven
45
run: mvn -q test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
46
build-graalvm:
0 commit comments