Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.22", "1.23"]
go: ["1.23", "1.24"]
steps:
- name: Check out source
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: ${{ matrix.go }}
- name: Install Linters
run: "go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.1"
run: "go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.5"
- name: Build
run: go build ./...
- name: Lint
Expand Down
3 changes: 2 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ linters:
- asciicheck
- bidichk
- bodyclose
- copyloopvar
- dupword
- durationcheck
- errchkjson
- errorlint
- exportloopref
- gofmt
- goimports
- gosimple
Expand All @@ -27,3 +27,4 @@ linters:
- typecheck
- unconvert
- unused
- usetesting
Loading