This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
Merge pull request #580 from kubernetes-csi/dependabot/go_modules/k8s… #5
This file contains 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: [ '^1.16' ] | |
platform: [windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Windows Unit Tests | |
run: | | |
go version | |
go test -v -race ./pkg/... |