Skip to content

Commit af6f721

Browse files
authored
Merge pull request #60 from essentialkaos/develop
Improvements
2 parents 2eb0c09 + 587f570 commit af6f721

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
################################################################################
22

3-
# This Makefile generated by GoMakeGen 1.2.0 using next command:
3+
# This Makefile generated by GoMakeGen 1.3.0 using next command:
44
# gomakegen --verbose .
55
#
66
# More info: https://kaos.sh/gomakegen
77

88
################################################################################
99

1010
.DEFAULT_GOAL := help
11-
.PHONY = fmt git-config deps deps-test test help
11+
.PHONY = fmt vet git-config deps deps-test test help
1212

1313
################################################################################
1414

@@ -27,11 +27,14 @@ test: ## Run tests
2727
fmt: ## Format source code with gofmt
2828
find . -name "*.go" -exec gofmt -s -w {} \;
2929

30+
vet: ## Runs go vet over sources
31+
go vet -composites=false -printfuncs=LPrintf,TLPrintf,TPrintf,log.Debug,log.Info,log.Warn,log.Error,log.Critical,log.Print ./...
32+
3033
help: ## Show this info
3134
@echo -e '\n\033[1mSupported targets:\033[0m\n'
3235
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
3336
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[33m%-12s\033[0m %s\n", $$1, $$2}'
3437
@echo -e ''
35-
@echo -e '\033[90mGenerated by GoMakeGen 1.2.0\033[0m\n'
38+
@echo -e '\033[90mGenerated by GoMakeGen 1.3.0\033[0m\n'
3639

3740
################################################################################

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<a href="https://godoc.org/pkg.re/essentialkaos/sslscan.v11"><img src="https://godoc.org/github.com/essentialkaos/sslscan?status.svg"></a>
55
<a href="https://goreportcard.com/report/github.com/essentialkaos/sslscan"><img src="https://goreportcard.com/badge/github.com/essentialkaos/sslscan"></a>
66
<a href="https://codebeat.co/projects/github-com-essentialkaos-sslscan"><img src="https://codebeat.co/badges/59a17b0e-b974-425e-a442-b9bcc3ccf7c0"></a>
7-
<a href="https://travis-ci.org/essentialkaos/sslscan"><img src="https://travis-ci.org/essentialkaos/sslscan.svg"></a>
7+
<a href="https://travis-ci.com/essentialkaos/sslscan"><img src="https://travis-ci.com/essentialkaos/sslscan.svg"></a>
88
<a href="#license"><img src="https://gh.kaos.st/apache2.svg"></a>
99
</p>
1010

@@ -32,8 +32,8 @@ go get -u pkg.re/essentialkaos/sslscan.v11
3232

3333
| Branch | Status |
3434
|--------|--------|
35-
| `master` | [![Build Status](https://travis-ci.org/essentialkaos/sslscan.svg?branch=master)](https://travis-ci.org/essentialkaos/sslscan) |
36-
| `develop` | [![Build Status](https://travis-ci.org/essentialkaos/sslscan.svg?branch=develop)](https://travis-ci.org/essentialkaos/sslscan) |
35+
| `master` | [![Build Status](https://travis-ci.com/essentialkaos/sslscan.svg?branch=master)](https://travis-ci.com/essentialkaos/sslscan) |
36+
| `develop` | [![Build Status](https://travis-ci.com/essentialkaos/sslscan.svg?branch=develop)](https://travis-ci.com/essentialkaos/sslscan) |
3737

3838
### Contributing
3939

0 commit comments

Comments
 (0)