You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							445 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							445 B
						
					
					
				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
 |