From 1c6e3f9d7b18e9bb0185f429aa2e137902137593 Mon Sep 17 00:00:00 2001 From: Cody Lee Date: Thu, 8 Dec 2022 20:42:11 -0600 Subject: [PATCH] we do not need to lint in different OS, only one OS, cleanup warning as well --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ac2ace8..877fb5d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: strategy: matrix: go: [1.19] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest] name: lint runs-on: ${{ matrix.os }} steps: @@ -51,8 +51,6 @@ jobs: # Optional: golangci-lint command line arguments. # args: --issues-exit-code=0 args: --timeout=3m - # we have installed go already - skip-go-installation: true # Optional: show only new issues if it's a pull request. The default value is `false`. # only-new-issues: true