Skip to content

Commit f6986a3

Browse files
authored
ci: bootstrap Makefile (#29)
Signed-off-by: Marc Nuri <[email protected]>
1 parent 06aa4ea commit f6986a3

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
java-version: '8'
2020
distribution: 'temurin'
2121
- name: Maven Build
22-
run: ./mvnw verify
22+
run: make test

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)