mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-03 09:33:43 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			385 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			385 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.DEFAULT_GOAL := test-and-lint
 | 
						|
 | 
						|
.PHONY: test-and-lint
 | 
						|
test-and-lint: test lint
 | 
						|
 | 
						|
.PHONY: test
 | 
						|
test:
 | 
						|
	go test -v -cover -race ./...
 | 
						|
 | 
						|
.PHONY: cover
 | 
						|
cover:
 | 
						|
	go test -v -coverprofile=coverage.txt -covermode=atomic -race ./...
 | 
						|
 | 
						|
.PHONY: lint
 | 
						|
lint:
 | 
						|
	go fmt ./...
 | 
						|
	golint ./...
 | 
						|
	@# Run again with magic to exit non-zero if golint outputs anything.
 | 
						|
	@! (golint ./... | read dummy)
 | 
						|
	go vet ./...
 |