Skip to content

Commit dcd7f29

Browse files
authored
ci: Create test build
1 parent 9c3b1d3 commit dcd7f29

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build2.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build and Test
2+
on: [push]
3+
jobs:
4+
test:
5+
name: Test
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Set up Golang
9+
uses: actions/setup-go@v1
10+
with:
11+
go-version: 1.12
12+
13+
- name: Check out code
14+
uses: actions/checkout@v1
15+
16+
- name: Run unit tests
17+
run: make test

0 commit comments

Comments
 (0)