Skip to content

Commit

Permalink
Remove redundant steps (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashamelentyev committed Sep 19, 2022
1 parent e9b86a6 commit 0040ae5
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/ci.yaml
Expand Up @@ -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

0 comments on commit 0040ae5

Please sign in to comment.