We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06aa4ea commit f6986a3Copy full SHA for f6986a3
.github/workflows/build.yml
@@ -19,4 +19,4 @@ jobs:
19
java-version: '8'
20
distribution: 'temurin'
21
- name: Maven Build
22
- run: ./mvnw verify
+ run: make test
Makefile
@@ -0,0 +1,13 @@
1
+MAVEN_OPTIONS=
2
+
3
+.PHONY: clean
4
+clean:
5
+ ./mvnw clean
6
7
+.PHONY: build
8
+build:
9
+ ./mvnw package
10
11
+.PHONY: test
12
+test:
13
+ ./mvnw verify
0 commit comments