Skip to content

Commit

Permalink
Merge pull request kubernetes#156 from dims/ensure-we-can-build-under…
Browse files Browse the repository at this point in the history
…-windows

Ensure we can build fine under windows
  • Loading branch information
k8s-ci-robot authored Apr 10, 2020
2 parents cac957d + 8a9c06f commit 5d1a62b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
name: Test
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-versions: [1.13.x]
platform: [windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: |
go build ./...
test:
strategy:
matrix:
Expand Down

0 comments on commit 5d1a62b

Please sign in to comment.