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 f255cbf commit 6924380Copy full SHA for 6924380
.github/workflows/build.yaml
@@ -11,6 +11,12 @@ jobs:
11
uses: actions/setup-java@v1
12
with:
13
java-version: 1.8
14
+ - name: Cache Maven packages
15
+ uses: actions/cache@v2
16
+ with:
17
+ path: ~/.m2
18
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
19
+ restore-keys: ${{ runner.os }}-m2
20
- name: Install NetCDF tools
21
run: sudo apt install netcdf-bin
22
- name: Maven build and test
0 commit comments