Skip to content

Commit d810976

Browse files
committed
ci: Add golangci-lint job
1 parent 4efd2e5 commit d810976

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,16 @@ jobs:
1515
with:
1616
token: ${{ secrets.CODECOV_TOKEN }}k
1717

18+
lint:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-go@v5
23+
with:
24+
go-version: '1.22'
25+
cache: true
26+
- name: golangci-lint
27+
uses: golangci/golangci-lint-action@v6
28+
with:
29+
version: latest
30+

0 commit comments

Comments
 (0)