Skip to content

Commit cf48bcd

Browse files
authored
Run golint as a part of CI tests (#1427)
Updates SDKs GitHub actions to run golint tooling as a part of CI process.
1 parent a930583 commit cf48bcd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
with:
2626
go-version: ${{ matrix.go-version }}
2727

28+
- name: Install golint
29+
if: ${{ matrix.go-version == '1.17' }}
30+
run: go install golang.org/x/lint/golint@latest
31+
2832
- name: Test
2933
run: make ci-test-no-generate
3034

0 commit comments

Comments
 (0)