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 628b4c3 commit 57e7652Copy full SHA for 57e7652
1 file changed
.github/workflows/ci.yml
@@ -18,7 +18,8 @@ jobs:
18
19
- uses: actions/setup-go@v5
20
with:
21
- go-version: '1.22'
+ go-version: '1.25'
22
+ cache: true
23
24
- name: Download dependencies
25
run: go mod download
@@ -30,7 +31,7 @@ jobs:
30
31
run: go test ./... -race -count=1
32
33
- name: Build
- run: go build ./cmd/lark-server
34
+ run: go build -o lark-server ./cmd/lark-server
35
36
lint:
37
name: Lint
@@ -40,12 +41,13 @@ jobs:
40
41
42
43
44
45
46
47
- name: golangci-lint
- uses: golangci/golangci-lint-action@v6
48
+ uses: golangci/golangci-lint-action@v7
49
- version: latest
50
+ version: v2.1
51
52
docker:
53
name: Docker Build
0 commit comments