Merge pull request #1752 from andyzhangx/upgrade-mount-utils-v1.32.0-… #4174
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@v4 | |
| - name: Build Test | |
| run: | | |
| make blob-windows | |
| - name: Run Windows Unit Tests | |
| run: | | |
| go test -v -race ./pkg/... |