Skip to content

Commit 3096315

Browse files
committed
test gh actions
Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent 6b78144 commit 3096315

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Go package
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: windows-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: Set up Go
13+
uses: actions/setup-go@v4
14+
with:
15+
go-version: '1.20'
16+
17+
- name: Build
18+
run: go run mage.go build
19+
20+
- name: SmokeTest
21+
run: go run mage.go testsmoke

0 commit comments

Comments
 (0)