Skip to content

Commit 20ccbeb

Browse files
committed
build: add Windows to GH actions build jobs
Signed-off-by: deadprogram <[email protected]>
1 parent 0403d51 commit 20ccbeb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/windows.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Windows
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- dev
8+
- release
9+
10+
jobs:
11+
build-windows:
12+
name: build-windows
13+
runs-on: windows-2022
14+
steps:
15+
- name: Install Go
16+
uses: actions/[email protected]
17+
with:
18+
go-version: '1.21.0'
19+
- name: Checkout
20+
uses: actions/[email protected]
21+
- name: Run unit tests
22+
run: go test
23+
- name: "Run Windows smoke tests"
24+
run: make smoketest-windows

0 commit comments

Comments
 (0)