From 1b92962484a38c1138563d7a1d8086d758630ed0 Mon Sep 17 00:00:00 2001 From: zhengkezhou1 Date: Mon, 10 Mar 2025 23:14:56 +0800 Subject: [PATCH] ci: attempt to run Go tests on Windows Signed-off-by: zhengkezhou1 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20fe7ddaf8..f37b02cb48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: with: go-version: 1.24.x - run: | - $TestTargets = go list ./... | Where-Object { $_ -NotMatch "(github.com/prometheus/prometheus/discovery.*|github.com/prometheus/prometheus/config|github.com/prometheus/prometheus/web)"} + $TestTargets = go list ./... | Where-Object { $_ -NotMatch "(github.com/prometheus/prometheus/config|github.com/prometheus/prometheus/web)"} go test $TestTargets -vet=off -v shell: powershell