Skip to content

Update Go to v1.22.3 #237

Update Go to v1.22.3

Update Go to v1.22.3 #237

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.22
uses: actions/setup-go@v5
with:
go-version: 1.22.3
- name: Disable default go problem matcher
run: echo "::remove-matcher owner=go::"
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
- name: Install golangci-lint
run: make install-lint
- name: make lint
run: make lint
- name: make vet
run: make vet