Skip to content

Commit aa83826

Browse files
authored
CI: Setup GitHub actions (#115)
1 parent d5f7166 commit aa83826

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "CI"
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: checkout
11+
uses: actions/checkout@v4
12+
- name: setup go
13+
uses: actions/setup-go@v4
14+
with:
15+
go-version: 1.21
16+
- name: vet
17+
run: go vet ./...
18+
- name: build
19+
run: make build
20+
- name: test
21+
run: make test

0 commit comments

Comments
 (0)