From ba0ea5a26c9014f1659ebb9d1188cb3f2fd72348 Mon Sep 17 00:00:00 2001 From: Camilo Viecco Date: Fri, 6 Dec 2024 11:01:53 -0800 Subject: [PATCH] wintest --- .github/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 507bb55..393cf50 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,19 @@ jobs: go-version: ${{ matrix.go-version }} - uses: actions/checkout@v3 - run: make test + testwindowsclient: + strategy: + matrix: + go-version: [1.23.x] + os: [windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/setup-go@v3 + with: + go-version: ${{ matrix.go-version }} + - uses: actions/checkout@v3 + - run: go test -v ./cmd/keymaster/... + buildlinuxpackage: strategy: