Skip to content

Commit

Permalink
Added a Makefile to running commands
Browse files Browse the repository at this point in the history
  • Loading branch information
garethr committed Apr 23, 2023
1 parent beaf63d commit b6d7191
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
build:
@go build -v

test:
@go test -v ./...

acceptance: build
@bats -r .

lint:
@golangci-lint run --fix

.PHONY: build test acceptance lint

0 comments on commit b6d7191

Please sign in to comment.