mirror of
				https://github.com/mgechev/revive.git
				synced 2025-10-30 23:37:49 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			108 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			108 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: test
 | |
| 
 | |
| export GO111MODULE=on
 | |
| 
 | |
| install:
 | |
| 	@go mod vendor
 | |
| 
 | |
| build:
 | |
| 	@go build
 | |
| 
 | |
| test:
 | |
| 	@go test -v ./...
 | |
| 
 |