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 cad7f0b commit 74a6b54Copy full SHA for 74a6b54
.github/workflows/build.yml
@@ -13,6 +13,12 @@ jobs:
13
uses: actions/setup-java@v1
14
with:
15
java-version: 11
16
+ - name: Cache Maven packages
17
+ uses: actions/cache@v2
18
+ with:
19
+ path: ~/.m2
20
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
21
+ restore-keys: ${{ runner.os }}-m2
22
- name: Install pre-requisites
23
run: ./dev/before_install
24
- name: Before build actions
@@ -29,6 +35,12 @@ jobs:
29
35
30
36
31
37
38
39
40
41
42
43
32
44
33
45
34
46
0 commit comments