diff options
| author | Joseph Richey <joerichey@google.com> | 2018-02-09 04:01:32 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-09 04:01:32 -0800 |
| commit | aebae1aae2fc61185a8bbc96313d8462727ad202 (patch) | |
| tree | 1307c7cccaede948a53be45343d4df711eb508b3 /Makefile | |
| parent | f4ccce6f486c26fdfa8d3d09929d464fc9368ab3 (diff) | |
| parent | 575618f02ea7ed3edc53b4bcd24ecbfc6ef00e77 (diff) | |
Merge pull request #84 from google/argon2
Move to x/crypto/argon2
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -126,7 +126,7 @@ format: @clang-format -i -style=Google $(C_FILES) format-check: - @goimports -d $(GO_FILES) \ + @goreturns -d $(GO_FILES) \ | ./input_fail.py "Incorrectly formatted Go files. Run \"make format\"." @clang-format -i -style=Google -output-replacements-xml $(C_FILES) \ | grep "<replacement " \ @@ -135,7 +135,7 @@ format-check: # Run lint rules (skipping generated files) .PHONY: lint lint: - @go tool vet -buildtags=false . + @go tool vet -buildtags=false $(SRC_FILES) @golint $(GO_PKGS) | grep -v "pb.go" | ./input_fail.py @megacheck -unused.exported $(GO_PKGS) @@ -185,6 +185,6 @@ travis-install: go-tools test-setup chmod +x $(GOPATH)/bin/dep go get -u github.com/mattn/goveralls -travis-script: lint format-check test default +travis-script: lint format-check default goveralls -service=travis-ci dep status |