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.
		
		
		
		
		
			
	
	
		
	
		
			
				
				
					
						
						
						
							|  | .PHONY: build test bench vet coverage
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | build: vet bench
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | test:
 | 
						
						
						
							|  | 	go test -v -cover -race
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | bench:
 | 
						
						
						
							|  | 	go test -v -cover -race -test.bench=. -test.benchmem
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | vet:
 | 
						
						
						
							|  | 	go vet
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | coverage:
 | 
						
						
						
							|  | 	go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out
 | 
						
						
						
							|  | 
 |