Skip to content

Commit

Permalink
Added check goal
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Jun 3, 2023
1 parent 9a2126f commit 91449d2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Expand Up @@ -4,17 +4,20 @@ include .env
NEXT_VERSION=$(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
CHANGE_JUSTIFICATION=$(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))

.PHONY: all gradlew clean build zoneinfo changelog currentVersion markNextVersion listApiChanges approveApiChanges \
.PHONY: all gradlew clean check test build zoneinfo changelog currentVersion markNextVersion listApiChanges approveApiChanges \
verify release publish

all: test
all: check

gradlew:
./gradlew wrapper --gradle-version=$(GRADLE_VERSION) --distribution-type=bin

clean:
./gradlew clean

check:
./gradlew check

test:
./gradlew test

Expand Down

0 comments on commit 91449d2

Please sign in to comment.