Skip to content

Commit ffb3a1b

Browse files
committed
Ensure the GOBIN is on the dir
1 parent 65c7b9e commit ffb3a1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
make get
3131
- name: Lint Code
3232
run: |
33-
go install golang.org/x/tools/cmd/goimports
34-
go install golang.org/x/lint/golint
33+
GOBIN=$HOME go install golang.org/x/tools/cmd/goimports && \
34+
go install golang.org/x/lint/golint && \
3535
make lint
3636
- name: Test
3737
run: |

0 commit comments

Comments
 (0)