Skip to content

Bump golang.org/x/tools/gopls from 0.14.2 to 0.15.0 #356

Bump golang.org/x/tools/gopls from 0.14.2 to 0.15.0

Bump golang.org/x/tools/gopls from 0.14.2 to 0.15.0 #356

Workflow file for this run

on: [pull_request]
name: Test
env:
GOPROXY: "https://proxy.golang.org"
jobs:
test:
strategy:
matrix:
go-version: ["1.18", "1.19", "1.20"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Format
run: gofmt -d .
- name: Lint
run: |
go generate -tags tools tools/tools.go
$(go env GOPATH)/bin/golint -set_exit_status .
- name: Vet
run: go vet
- name: Test
run: go test -v -race ./...