Skip to content

Commit 9d86a0d

Browse files
committed
add github build action
1 parent 602a17f commit 9d86a0d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout Code
8+
uses: actions/checkout@v2
9+
- name: Set up Go
10+
uses: actions/setup-go@v2
11+
with:
12+
go-version: 'stable'
13+
- name: Build
14+
run: go build -v
15+

0 commit comments

Comments
 (0)