Skip to content

Commit bded71b

Browse files
committed
Adding GH Actions
1 parent bc1c68f commit bded71b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: build
2+
on:
3+
push:
4+
jobs:
5+
golangci:
6+
name: lint
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/setup-go@v3
10+
with:
11+
go-version: 1.19
12+
- uses: actions/checkout@v3
13+
- run: go get -v -t -d ./...
14+
- run: make lint
15+
- run: make test
16+
- run: make build

0 commit comments

Comments
 (0)