Skip to content

chore: update go version and lint #75

chore: update go version and lint

chore: update go version and lint #75

Workflow file for this run

name: Lint Go code
on:
pull_request:
branches:
- "main"
- "release-*"
paths-ignore:
- 'docs/**'
- '**.md'
- 'sec-scanners-config.yaml'
env:
GO111MODULE: "off"
jobs:
code-linter:
name: "Run golangci-lint"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.57