Skip to content

Commit fd35e2e

Browse files
committed
move down to a separate job
1 parent 8b3f481 commit fd35e2e

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@ jobs:
1616

1717
- name: Vet
1818
run: go vet -v ./...
19-
20-
- name: golangci-lint
21-
uses: golangci/golangci-lint-action@v1
22-
with:
23-
version: v1.26
2419

2520
- name: Test
2621
run: go test -v ./...
22+
23+
lint:
24+
name: Lint
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v2
28+
- name: golangci-lint
29+
uses: golangci/golangci-lint-action@v1
30+
with:
31+
version: v1.26

0 commit comments

Comments
 (0)