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 3c65de0 commit fe9efa0Copy full SHA for fe9efa0
.github/workflow/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+on: [push]
3
+jobs:
4
+ golang-lint:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Check out code
8
+ uses: actions/checkout@v4
9
+
10
+ - name: Install Go 1.23
11
+ uses: actions/setup-go@v5
12
+ with:
13
+ go-version: '1.23'
14
+ - name: Lint code
15
+ uses: golangci/golangci-lint-action@v8
16
17
+ version: v2.1
18
+ golang-test:
19
20
21
22
23
24
25
26
27
28
+ - name: Download dependencies
29
+ run: go mod download
30
+ - name: Run tests
31
+ run: go test -v ./...
32
33
0 commit comments