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
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.1.6
version: v2.10.1
args: --verbose
test:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.21, 1.22, 1.23, 1.24]
go: [1.23, 1.24, 1.25, 1.26]
include:
- os: ubuntu-latest
go-build: ~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GO=go
BUILD_PATH=./bin
GOLANGCI_LINT=$(BUILD_PATH)/golangci-lint
GOLANGCI_LINT_VERSION=v2.1.6
GOLANGCI_LINT_VERSION=v2.10.1

.PHONY: build clean test lint help docker

Expand Down
2 changes: 1 addition & 1 deletion dberd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ func TestSchema_SkipTables(t *testing.T) {
expected: Schema{
Tables: []Table{
{Name: "public.users"},
{Name: "audit.goose_db_version"},
{Name: "public.schema_migrations"},
{Name: "audit.goose_db_version"},
},
References: []Reference{usersToMigrations, usersToUsers},
},
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/holydocs/dberd

go 1.23.1
go 1.26.4

require (
github.com/ClickHouse/clickhouse-go/v2 v2.36.0
Expand Down
Loading