From c5b996db43029a4f3a6ecd2e0580d2c96da764ba Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 7 Feb 2022 14:37:38 -0800 Subject: [PATCH] CI: add lint job to GHA This is golangci-lint run with default linters and configuration. Signed-off-by: Kir Kolyshkin --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6aec30d..77bb07b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,14 @@ on: jobs: + lint: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - uses: golangci/golangci-lint-action@v2 + with: + version: v1.44 + test: runs-on: ubuntu-latest strategy: