Skip to content

Commit

Permalink
chore: add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Jun 12, 2022
1 parent 3a01830 commit 65040a1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
test: fmt vet
go test ./...

fmt:
go fmt ./...

vet:
go vet ./...

run: fmt vet
go run ./main.go

0 comments on commit 65040a1

Please sign in to comment.