Merge pull request #2245 from kubernetes-sigs/dependabot/go_modules/g… #5339
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@v6 | |
| 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/... |