From 6e2bf7e0ba2b6a1fe936129b4843dba4d83e8b46 Mon Sep 17 00:00:00 2001 From: Shaya Potter Date: Wed, 8 Jul 2020 22:23:32 +0300 Subject: [PATCH] need to run test after lint to fix linter failure https://github.com/golangci/golangci-lint-action/issues/23 --- .github/workflows/pull_request.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 40f037d..87a1b59 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -18,15 +18,15 @@ jobs: with: go-version: 1.14.x - - name: Go Unit Test - run: go test ./pkg/... - - name: Lint Go code uses: golangci/golangci-lint-action@v1 with: version: v1.27 args: --timeout=10m + - name: Go Unit Test + run: go test ./pkg/... + build: name: Build runs-on: ubuntu-latest