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 2f5757d commit f9d6abbCopy full SHA for f9d6abb
.github/workflows/ci.yaml
@@ -1,5 +1,5 @@
1
#
2
-# Copyright 2009-2020 the original author or authors.
+# Copyright 2009-2021 the original author or authors.
3
4
# Licensed under the Apache License, Version 2.0 (the "License");
5
# you may not use this file except in compliance with the License.
@@ -35,5 +35,12 @@ jobs:
35
uses: actions/setup-java@v1
36
with:
37
java-version: ${{ matrix.java }}
38
+ - name: Cache local Maven repository
39
+ uses: actions/cache@v2
40
+ with:
41
+ path: ~/.m2/repository
42
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
43
+ restore-keys: |
44
+ ${{ runner.os }}-maven-
45
- name: Test with Maven
46
run: ./mvnw test -B -D"license.skip=true"
0 commit comments