Merge pull request #2181 from k8s-infra-cherrypick-robot/cherry-pick-… #5188
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows Tests | |
| on: | |
| pull_request: {} | |
| push: {} | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| go-versions: [1.16.x] | |
| platform: [windows-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ^1.16 | |
| id: go | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Build Test | |
| run: | | |
| make blob-windows | |
| - name: Run Windows Unit Tests | |
| run: | | |
| go test -v -race ./pkg/... |