Skip to content

Commit 7f83656

Browse files
committed
Add support for Windows in the go.yaml workflow
1 parent d48dc5c commit 7f83656

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/go.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
- name: Run go vet
1212
run: go vet ./...
1313
test:
14-
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest, windows-latest]
17+
runs-on: ${{ matrix.os }}
1518
steps:
1619
- uses: actions/checkout@v4
1720
- uses: actions/setup-go@v5

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: release
2+
name: Release
33
on:
44
push:
55
tags:

0 commit comments

Comments
 (0)