From a7d30d41b0380f591308eaf063cb82a84d428510 Mon Sep 17 00:00:00 2001 From: preko-p <278021202+preko-p@users.noreply.github.com> Date: Mon, 8 Jun 2026 19:30:11 +0200 Subject: [PATCH] ci: add Windows unit test job Signed-off-by: preko-p <278021202+preko-p@users.noreply.github.com> --- .github/workflows/unit.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 41c451f9f..4d9382f13 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -20,3 +20,16 @@ jobs: - name: Run Unit Tests run: make test-unit + + test-unit-windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-go@v5 + with: + go-version: 1.25.x + cache: true + check-latest: true + + - name: Run Unit Tests + run: go test -mod=vendor -race -cover ./cmd/shp/... ./pkg/...