Merged in jb/openapi (pull request #22)
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
This commit is contained in:
committed by
Michael McGuinness
parent
5ca36b0502
commit
174644b63c
+32
@@ -0,0 +1,32 @@
|
||||
GOBASE=$(shell pwd)
|
||||
GOBIN=$(GOBASE)/bin
|
||||
|
||||
help:
|
||||
@echo "This is a helper makefile for oapi-codegen"
|
||||
@echo "Targets:"
|
||||
@echo " generate: regenerate all generated files"
|
||||
@echo " test: run all tests"
|
||||
@echo " gin_example generate gin example server code"
|
||||
@echo " tidy tidy go mod"
|
||||
|
||||
$(GOBIN)/golangci-lint:
|
||||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) v1.55.2
|
||||
|
||||
.PHONY: tools
|
||||
tools: $(GOBIN)/golangci-lint
|
||||
|
||||
lint: tools
|
||||
$(GOBIN)/golangci-lint run ./...
|
||||
|
||||
lint-ci: tools
|
||||
$(GOBIN)/golangci-lint run ./... --out-format=github-actions --timeout=5m
|
||||
|
||||
generate:
|
||||
go generate ./...
|
||||
|
||||
test:
|
||||
go test -cover ./...
|
||||
|
||||
tidy:
|
||||
@echo "tidy..."
|
||||
go mod tidy
|
||||
Reference in New Issue
Block a user