From 62124055b8df972052ac25e579eda8fd79fbe7d6 Mon Sep 17 00:00:00 2001 From: Joe Kleinsorge <30941888+JoeKleinsorge@users.noreply.github.com> Date: Mon, 26 Jun 2023 09:18:33 -0400 Subject: [PATCH] chore: update linter --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b828dc..fc1d6e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,9 +35,10 @@ jobs: - name: Install golint run: go install golang.org/x/lint/golint@latest - - - name: Run golint - run: golint ./... - + + - uses: golangci/golangci-lint-action@v3.4.0 + with: + args: "--out-${NO_FUTURE}format colored-line-number" + - name: Run tests - run: go test -race -vet=off ./... \ No newline at end of file + run: go test -race -vet=off ./...