Merged in feature/semver (pull request #93)
Add semantic versioning to all services * working * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver * 1.24 mod * go upgrade * tool * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
SHELL=bash
|
||||
|
||||
.PHONY: all
|
||||
all: fmt mocks test install docker
|
||||
|
||||
.PHONY: fmt
|
||||
fmt:
|
||||
go fmt ./...
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
go test -v -coverprofile=coverage.txt ./...
|
||||
|
||||
.PHONY: test.ci
|
||||
test.ci: test fmt
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2 run
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf mocks
|
||||
Reference in New Issue
Block a user