15 строки
		
	
	
	
		
			272 Б
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 строки
		
	
	
	
		
			272 Б
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: test deps
 | |
| 
 | |
| test:
 | |
| 	@echo "running all tests"
 | |
| 	@go fmt ./...
 | |
| 	@golint ./...
 | |
| 	go vet ./...
 | |
| 	go test
 | |
| 	go run cmd/godog/main.go -f progress -c 4
 | |
| 
 | |
| deps:
 | |
| 	@echo "updating all dependencies"
 | |
| 	go get -u github.com/cucumber/gherkin-go
 | |
| 	go get -u github.com/shiena/ansicolor
 | |
| 
 | 
