From 0040ae5528033433763eb3d52ab28d0b3f42a1ca Mon Sep 17 00:00:00 2001 From: Sasha Melentyev Date: Mon, 19 Sep 2022 12:38:06 +0300 Subject: [PATCH] Remove redundant steps (#79) --- .github/workflows/ci.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cf43d9c..3fef4d0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,23 +19,17 @@ jobs: with: go-version: 1.19 - - name: Lint - uses: golangci/golangci-lint-action@v3.2.0 - with: - version: latest - args: --timeout 5m - - name: Go Format run: gofmt -s -w . && git diff --exit-code - name: Go Tidy run: go mod tidy && git diff --exit-code - - name: Go Mod - run: go mod download - - - name: Go Build - run: go build -v ./... - - name: Go Test run: go test -v -race ./... + + - name: Lint + uses: golangci/golangci-lint-action@v3.2.0 + with: + version: latest + args: --timeout 5m