Skip to content

Merge pull request #161 from neicnordic/hotfix/linter #438

Merge pull request #161 from neicnordic/hotfix/linter

Merge pull request #161 from neicnordic/hotfix/linter #438

Workflow file for this run

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