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 92fd9de commit f255cbfCopy full SHA for f255cbf
.github/workflows/HelloWorldWorkflow.yml
.github/workflows/build.yaml
@@ -0,0 +1,17 @@
1
+# This workflow will build a Java project with Maven
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3
+name: Java CI with Maven
4
+on: push
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Set up JDK 1.8
11
+ uses: actions/setup-java@v1
12
+ with:
13
+ java-version: 1.8
14
+ - name: Install NetCDF tools
15
+ run: sudo apt install netcdf-bin
16
+ - name: Maven build and test
17
+ run: mvn clean test
0 commit comments