Skip to content

Commit

Permalink
ci: bootstrap Makefile (#29)
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
manusa authored May 30, 2024
1 parent 06aa4ea commit f6986a3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
java-version: '8'
distribution: 'temurin'
- name: Maven Build
run: ./mvnw verify
run: make test
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
MAVEN_OPTIONS=

.PHONY: clean
clean:
./mvnw clean

.PHONY: build
build:
./mvnw package

.PHONY: test
test:
./mvnw verify

0 comments on commit f6986a3

Please sign in to comment.