Skip to content

Commit d7e60d5

Browse files
Add Go linting to the client.yml workflow
As part of work on RFC-18 a job linting the Go code has been added to `client.yml` workflow. Action for linting of Go code has been also added (as separate repository) as part of this work.
1 parent b3fa31c commit d7e60d5

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/client.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,12 @@ jobs:
3838
- uses: actions/checkout@v2
3939
- uses: securego/gosec@master
4040
with:
41-
args: ./...
41+
args: ./...
42+
43+
client-lint:
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v2
47+
48+
- name: Lint Go
49+
uses: keep-network/golint-action@v1.0.2

0 commit comments

Comments
 (0)