From bd2c313064c4688c5f5f4deac0ab13161b356810 Mon Sep 17 00:00:00 2001 From: Davor Kapsa Date: Tue, 21 Jun 2022 11:51:36 +0200 Subject: [PATCH] gh: add vet to go test --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f22e67e..1eaf0e8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,8 +14,6 @@ jobs: go-version: 1.x - name: Checkout code uses: actions/checkout@v3 - - name: Run go vet - run: go vet ./... - - name: Run tests and coverage - run: go test -race -cover -shuffle=on ./... + - name: Run vet, tests and coverage + run: go test -race -cover -shuffle=on -vet=all ./...