Skip to content

Merge branch 'main' into feature/config-before-command #1491

Merge branch 'main' into feature/config-before-command

Merge branch 'main' into feature/config-before-command #1491

Workflow file for this run

name: Go Multilinting
on: [push]
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22"]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run golangci-lint
uses: golangci/[email protected]
with:
args: -E bodyclose,gocritic,gofmt,gosec,govet,nestif,nlreturn,revive,rowserrcheck --exclude G401,G501,G107,G307,G115