mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 15:42:26 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			194 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			194 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| all: lint test bench
 | |
| 
 | |
| lint:
 | |
| 	golangci-lint run --timeout 5m
 | |
| 
 | |
| test:
 | |
| 	go test -covermode=atomic -race ./...
 | |
| 
 | |
| bench:
 | |
| 	go test -bench=. -benchmem ./...
 | |
| 
 | |
| .PHONY: test lint bench
 | |
| .DEFAULT_GOAL := all
 |