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/...