Skip to content

Commit

Permalink
build: add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Feb 20, 2024
1 parent 3418f2f commit 00dcab7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
all: lint test

lint: force
./tools/golangci-lint run -v

test: force
go test -v -timeout 5s ./...

clean:
rm -rf .cache

.PHONY: force

0 comments on commit 00dcab7

Please sign in to comment.