Skip to content

Commit 8f0c241

Browse files
committed
update lint job configuration
1 parent 2cd6323 commit 8f0c241

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/go.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,16 @@ jobs:
3131
os: [macos-latest, ubuntu-latest]
3232
runs-on: ${{ matrix.os }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v4
3535
- uses: actions/setup-go@v5
3636
with:
3737
go-version-file: 'go.mod'
38-
- name: golangci-lint
38+
- name: Install Dependencies
39+
run: go mod tidy
40+
- name: Verify Build
41+
run: go build ./...
42+
- name: Run golangci-lint
3943
uses: golangci/golangci-lint-action@v6.3.2
4044
with:
4145
version: v1.52.0
46+
args: "--timeout 5m"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set Up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: "1.24"
20+
go-version: "1.23"
2121

2222
- name: Extract Version from Tag
2323
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV

0 commit comments

Comments
 (0)