From 272a48ff2c57105f548160eb8f611b9519d2dbeb Mon Sep 17 00:00:00 2001 From: Laszlo Fogas Date: Thu, 24 Oct 2019 11:17:07 +0200 Subject: [PATCH] Vendor folder gone --- .drone.yml | 2 +- .github/workflows/go.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 58a2ef76a..1cee7dc2d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ pipeline: test: image: golang:1.12.4 commands: - - go test -cover -timeout 30s $(go list ./... | grep -v /vendor/) + - go test -cover -timeout 30s $(go list ./...) test_postgres: image: golang:1.12.4 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9e40ab8ac..50748f9e8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Test run: | - go test -cover $(go list ./... | grep -v /vendor/) + go test -cover $(go list ./...) - name: Build run: ./.drone.sh