mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
# Copyright 2016 The Cockroach Authors. |
|
# |
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
# you may not use this file except in compliance with the License. |
|
# You may obtain a copy of the License at |
|
# |
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
# |
|
# Unless required by applicable law or agreed to in writing, software |
|
# distributed under the License is distributed on an "AS IS" BASIS, |
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
|
# implied. See the License for the specific language governing |
|
# permissions and limitations under the License. See the AUTHORS file |
|
# for names of contributors. |
|
# |
|
# Author: Spencer Kimball (spencer.kimball@gmail.com) |
|
# |
|
|
|
# Cockroach build rules. |
|
GO ?= go |
|
# Allow setting of go build flags from the command line. |
|
GOFLAGS := |
|
|
|
.PHONY: all |
|
all: test check |
|
|
|
.PHONY: test |
|
test: |
|
$(GO) test -v -i ./... |
|
$(GO) test -v ./... |
|
|
|
.PHONY: deps |
|
deps: |
|
$(GO) get -d -t ./... |
|
|
|
.PHONY: check |
|
check: |
|
@echo "checking for \"path\" imports" |
|
@! git grep -F '"path"' -- '*.go' |
|
@echo "errcheck" |
|
@errcheck ./... |
|
@echo "vet" |
|
@! go tool vet . 2>&1 | \ |
|
grep -vE '^vet: cannot process directory .git' |
|
@echo "vet --shadow" |
|
@! go tool vet --shadow . 2>&1 | \ |
|
grep -vE '(declaration of err shadows|^vet: cannot process directory \.git)' |
|
@echo "golint" |
|
@! golint ./... | grep -vE '(\.pb\.go)' |
|
@echo "varcheck" |
|
@varcheck -e ./... |
|
@echo "gofmt (simplify)" |
|
@! gofmt -s -d -l . 2>&1 | grep -vE '^\.git/' |
|
@echo "goimports" |
|
@! goimports -l . | grep -vF 'No Exceptions'
|
|
|