From 8ef374c4e3eb2bd3bd49e0452e9f5f993c2c3c3c Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Wed, 7 Nov 2018 10:57:51 +0300 Subject: [PATCH] just testing --- README.md | 1 + app/analyze/linters/linter.go | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 010e187..dc38fd9 100644 --- a/README.md +++ b/README.md @@ -81,3 +81,4 @@ go run app/scripts/emulate_webhook/main.go --repo golangci/golangci-worker --pr ## Contributing See [CONTRIBUTING](https://github.com/golangci/golangci-worker/blob/master/CONTRIBUTING.md). + diff --git a/app/analyze/linters/linter.go b/app/analyze/linters/linter.go index f97c38b..aafaad7 100644 --- a/app/analyze/linters/linter.go +++ b/app/analyze/linters/linter.go @@ -2,6 +2,7 @@ package linters import ( "context" + "fmt" "github.com/golangci/golangci-worker/app/analyze/linters/result" "github.com/golangci/golangci-worker/app/lib/executors" @@ -13,3 +14,11 @@ type Linter interface { Run(ctx context.Context, exec executors.Executor) (*result.Result, error) Name() string } + +func Test() { + if true { + return + } else { + fmt.Printf("ssd") + } +}