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 ab1cd1c commit 79b5dffCopy full SHA for 79b5dff
.github/workflows/main.yaml
@@ -0,0 +1,34 @@
1
+name: Go CI
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ golangci:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-go@v5
12
+ with:
13
+ go-version: stable
14
+ - name: golangci-lint
15
+ uses: golangci/golangci-lint-action@v6
16
17
+ version: v1.60
18
+ - name: Go Format
19
+ uses: Jerome1337/gofmt-action@v1.0.5
20
21
+ gofmt-path: './src'
22
+ gofmt-flags: '-l -d'
23
24
+ test:
25
26
27
28
29
30
31
+ - name: test
32
+ run: go test -v ./pkg
33
34
0 commit comments