13 lines
		
	
	
		
			309 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			309 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: build
 | |
| build:
 | |
| 	CGO_ENABLED=0 go build -o bin/app -mod=readonly git.unistack.org/unistack-org/pkgdash/cmd/pkgdash
 | |
| 
 | |
| .PHONY: test
 | |
| test:
 | |
| 	go test -v ./... -race -cover
 | |
| 
 | |
| .PHONY: lint
 | |
| lint:
 | |
| 	# Install the binary release of golangci-lint
 | |
| 	# https://github.com/golangci/golangci-lint#install
 | |
| 	golangci-lint run
 |