We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e987adb commit f8f9452Copy full SHA for f8f9452
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths-ignore: [docs/**]
7
+ pull_request:
8
9
10
11
+jobs:
12
+ check:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-go@v5
17
+ with:
18
+ go-version-file: go.mod
19
+ - run: make fmt-check
20
+ - run: make vet
21
+ - run: make test
0 commit comments