Skip to content

Commit 00114ab

Browse files
committed
added lint job
1 parent 9db3346 commit 00114ab

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,15 @@ jobs:
2323
run: go build -v
2424
- name: Test
2525
run: go test -v -race ./...
26+
27+
lint:
28+
name: Lint
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout source
32+
uses: actions/checkout@v3
33+
- name: golangci-lint
34+
uses: golangci/golangci-lint-action@v3
35+
with:
36+
version: latest
37+
args: --timeout=5m

0 commit comments

Comments
 (0)