We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ff0bb9 commit 4456adaCopy full SHA for 4456ada
.github/workflows/ci.yml
@@ -22,7 +22,4 @@ jobs:
22
go install github.com/go-bindata/go-bindata/...@latest &&
23
go install honnef.co/go/tools/cmd/staticcheck@latest &&
24
go generate &&
25
- make build &&
26
- make lint &&
27
- make test &&
28
- make vet
+ make
Makefile
@@ -1,11 +1,14 @@
1
GIT_COMMITSHA = $(shell git rev-parse HEAD)
2
IMAGE_NAME = "stripemock/stripe-mock"
3
4
-all: test vet lint check-gofmt build
+all: test vet lint build
5
6
build:
7
go build -mod=vendor -o stripe-mock
8
9
+check-gofmt:
10
+ scripts/check_gofmt.sh
11
+
12
lint:
13
staticcheck
14
0 commit comments