File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments