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: