mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
ee97e6a66a
* change to new code location * vendor * tagged version v0.2.0 * gitea-vet v0.2.1 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
22 lines
No EOL
445 B
Makefile
Vendored
22 lines
No EOL
445 B
Makefile
Vendored
GO ?= go
|
|
|
|
.PHONY: build
|
|
build:
|
|
$(GO) build
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
.PHONY: vet
|
|
vet: build
|
|
$(GO) vet ./...
|
|
$(GO) vet -vettool=gitea-vet ./...
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
@hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
|
export BINARY="golangci-lint"; \
|
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(shell $(GO) env GOPATH)/bin v1.24.0; \
|
|
fi
|
|
golangci-lint run --timeout 5m
|