attempt to fix

This commit is contained in:
thinkerou 2019-11-30 15:57:05 +08:00 committed by GitHub
parent 4c27b80fa6
commit c257df193b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,11 +23,12 @@ jobs:
with: with:
go-version: ${{ matrix.go_version }} go-version: ${{ matrix.go_version }}
- name: Check out code into the Go module directory - name: Check out code
uses: actions/checkout@v1 uses: actions/checkout@v1
- name: Lint Go code - name: Lint Go code
run: | run: |
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
go get -u golang.org/x/lint/golint go get -u golang.org/x/lint/golint
go get -u github.com/client9/misspell/cmd/misspell go get -u github.com/client9/misspell/cmd/misspell
make vet make vet