Skip to content

Commit fef07ad

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

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/go.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ 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
36+
env:
3637
- name: Test
3738
run: |
3839
make test

0 commit comments

Comments
 (0)