fix golint (#407)
This commit is contained in:
parent
f980e7e724
commit
7108e9c50d
1 changed files with 2 additions and 2 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
||||||
- name: set up Go
|
- name: set up Go
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v1
|
||||||
with:
|
with:
|
||||||
go-version: 1.14
|
go-version: 1.17
|
||||||
id: go
|
id: go
|
||||||
- name: set up Go module cache
|
- name: set up Go module cache
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
|
@ -29,6 +29,6 @@ jobs:
|
||||||
- name: check out code
|
- name: check out code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: install golint
|
- name: install golint
|
||||||
run: go get -u golang.org/x/lint/golint
|
run: go install golang.org/x/lint/golint@latest
|
||||||
- name: run tests
|
- name: run tests
|
||||||
run: make test
|
run: make test
|
||||||
|
|
Loading…
Reference in a new issue