Skip to content

Commit 0040ae5

Browse files
Remove redundant steps (#79)
1 parent e9b86a6 commit 0040ae5

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,17 @@ jobs:
1919
with:
2020
go-version: 1.19
2121

22-
- name: Lint
23-
uses: golangci/golangci-lint-action@v3.2.0
24-
with:
25-
version: latest
26-
args: --timeout 5m
27-
2822
- name: Go Format
2923
run: gofmt -s -w . && git diff --exit-code
3024

3125
- name: Go Tidy
3226
run: go mod tidy && git diff --exit-code
3327

34-
- name: Go Mod
35-
run: go mod download
36-
37-
- name: Go Build
38-
run: go build -v ./...
39-
4028
- name: Go Test
4129
run: go test -v -race ./...
30+
31+
- name: Lint
32+
uses: golangci/golangci-lint-action@v3.2.0
33+
with:
34+
version: latest
35+
args: --timeout 5m

0 commit comments

Comments
 (0)