From 3d944cdc9259426d8b5eb6938311733db720c22a Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Thu, 21 Dec 2023 13:13:30 -0600 Subject: [PATCH] build: enable tests on windows --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index a85dfb4..c0a7a4b 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,7 @@ build: .PHONY: check check: ifeq ($(OS),Windows_NT) - @echo "Skipping checks on Windows, currently unsupported." + go test ./... -count 1 -race else @wget -O lint-project.sh https://raw.githubusercontent.com/moov-io/infra/master/go/lint-project.sh @chmod +x ./lint-project.sh