We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f51118c commit b58aab6Copy full SHA for b58aab6
.github/workflows/windows.yml
@@ -0,0 +1,28 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ strategy:
12
+ matrix:
13
+ go-versions: [1.13.x]
14
+ platform: [windows-latest]
15
+ runs-on: ${{ matrix.platform }}
16
+ steps:
17
+ - name: Install Go
18
+ uses: actions/setup-go@v1
19
+ with:
20
+ go-version: ${{ matrix.go-version }}
21
+ - name: Checkout code
22
+ uses: actions/checkout@v2
23
+ - name: Build
24
+ run: |
25
+ go build -a -o _output/csi-proxy.exe ./cmd/csi-proxy
26
+ - name: Run Windows Unit Tests
27
28
+ go test -v -race ./internal/...
0 commit comments