Skip to content

Bump github.com/hashicorp/go-plugin from 1.6.0 to 1.6.1 #755

Bump github.com/hashicorp/go-plugin from 1.6.0 to 1.6.1

Bump github.com/hashicorp/go-plugin from 1.6.0 to 1.6.1 #755

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run linters
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install golang.org/x/lint/golint@latest
golint --set_exit_status $(go list ./...)
go vet ./...