We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 903b337 + d5eef61 commit 8116408Copy full SHA for 8116408
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
6
+permissions:
7
+ contents: read
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Go
17
+ uses: actions/setup-go@v5
18
+ with:
19
+ go-version-file: go.mod
20
21
+ - name: Run tests
22
+ run: go test ./...
23
24
+ - name: Run vet
25
+ run: go vet ./...
0 commit comments