bump go version and se gotip

This commit is contained in:
Andrea Spacca
2024-10-26 11:26:46 +02:00
parent 7ea1a25c0e
commit 3cf1b3eda6

View File

@@ -30,7 +30,7 @@ jobs:
if: ${{ matrix.go_version == 'tip' }}
run: |
go install golang.org/dl/gotip@latest
gotip download
${GOPATH}/bin/gotip download
- name: Vet and test no tip
if: ${{ matrix.go_version != 'tip' }}
run: |
@@ -40,9 +40,9 @@ jobs:
- name: Vet and test gotip
if: ${{ matrix.go_version == 'tip' }}
run: |
gotip version
gotip vet ./...
gotip test ./...
${GOPATH}/bin/gotip version
${GOPATH}/bin/gotip vet ./...
${GOPATH}/bin/gotip test ./...
golangci:
name: Linting
runs-on: ubuntu-latest