We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ea39a commit 7f3f9ffCopy full SHA for 7f3f9ff
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
15
+ - uses: actions/setup-go@v6
16
+ with:
17
+ go-version-file: go.mod
18
19
+ - name: Lint
20
+ run: go tool golangci-lint run
21
22
+ test:
23
24
25
26
27
28
29
30
31
+ - name: Test
32
+ run: go test ./...
0 commit comments