From 1a7008fa32cea5dfc3543567513a3652a372c128 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Tue, 21 Sep 2021 11:34:22 +0200 Subject: [PATCH] ci: make build pass on windows Signed-off-by: Mark Sagi-Kazar --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d93583..3f3213c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,9 @@ jobs: uses: actions/checkout@v2 - name: Lint - run: make lint + uses: golangci/golangci-lint-action@v2 + with: + version: v1.40.1 - name: Test - run: make test + run: go test -race -v ./...