Skip to content

Commit f6e9ca7

Browse files
committed
Initial commit
Signed-off-by: Spike Curtis <spike@coder.com>
0 parents  commit f6e9ca7

File tree

11 files changed

+1938
-0
lines changed

11 files changed

+1938
-0
lines changed

.github/ci.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: ci
2+
on: [push]
3+
jobs:
4+
make:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-go@v4
9+
with:
10+
go-version: "^1.21"
11+
- name: test
12+
run: go test .

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

0 commit comments

Comments
 (0)