Merge pull request #1733 from andyzhangx/blobfuse2.4.0 #4133
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/... |