Skip to content

lint: add support for errcheck #7207

lint: add support for errcheck

lint: add support for errcheck #7207

Workflow file for this run

name: Tests
on:
pull_request:
merge_group:
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checkout should always be before setup-go to ensure caching is working
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23.5
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Build binaries
run: make build
- name: Run unit tests
run: make test
- name: Check with go vet
run: make vet