Skip to content

Commit

Permalink
gobin
Browse files Browse the repository at this point in the history
  • Loading branch information
aspacca committed Oct 26, 2024
1 parent b6a7f59 commit 2278541
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: ${{ matrix.go_version == 'tip' }}
run: |
go install golang.org/dl/gotip@latest
${GOPATH}/bin/gotip download
`go env GOBIN`/gotip download
- name: Vet and test no tip
if: ${{ matrix.go_version != 'tip' }}
run: |
Expand All @@ -40,9 +40,9 @@ jobs:
- name: Vet and test gotip
if: ${{ matrix.go_version == 'tip' }}
run: |
${GOPATH}/bin/gotip version
${GOPATH}/bin/gotip vet ./...
${GOPATH}/bin/gotip test ./...
`go env GOBIN`/gotip version
`go env GOBIN`/gotip vet ./...
`go env GOBIN`/gotip test ./...
golangci:
name: Linting
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2278541

Please sign in to comment.