Skip to content

actions: fix deprecated flag #23

actions: fix deprecated flag

actions: fix deprecated flag #23

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
jobs:
golangci:
strategy:
matrix:
go: [stable]
os: [ubuntu-latest, macos-latest]
name: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
args: --disable-all -E errcheck -E govet -E gofmt -E misspell -E ineffassign -E goimports -E unused -E typecheck -E staticcheck -E gosimple ./...