Skip to content

Update GolangCI-lint to v1.53.3 #137

Update GolangCI-lint to v1.53.3

Update GolangCI-lint to v1.53.3 #137

Workflow file for this run

name: Test Incoming Changes
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
name: Run Linter and Vet
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: 1.20.5
- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
- name: Install golangci-lint
run: make install-lint
- name: make lint
run: make lint
- name: make vet
run: make vet