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 b9b594a commit 1f88068Copy full SHA for 1f88068
.github/workflows/build-test.yml
@@ -0,0 +1,32 @@
1
+name: Build & Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout Repository
17
+ uses: actions/checkout@v1
18
+ - name: Set up JDK 1.8
19
+ uses: actions/setup-java@v1
20
+ with:
21
+ java-version: 1.8
22
+ - name: Build & Test
23
+ run: mvn clean package
24
+ - name: Copy Release Artifacts
25
+ run: |
26
+ mkdir target/release
27
+ cp pom.xml target/*.jar target/release/
28
+ - name: Upload Artifacts
29
+ uses: actions/upload-artifact@v1
30
31
+ name: ogc-api-features-json-java
32
+ path: target/release
0 commit comments