File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,19 @@ jobs:
4949 steps :
5050 - name : Fetch Repository
5151 uses : actions/checkout@v6
52+
5253 - name : Install Go
54+ if : ${{ matrix.package != 'clickhouse' }}
5355 uses : actions/setup-go@v6
5456 with :
5557 # NOTE: Keep this in sync with the version from go.mod
5658 go-version : " 1.24.x"
59+ - name : Install Go (For clickhouse)
60+ uses : actions/setup-go@v6
61+ if : ${{ matrix.package == 'clickhouse' }}
62+ with :
63+ go-version : " 1.25.x"
64+
5765 - name : Setup Node.js
5866 uses : actions/setup-node@v6
5967 with :
Original file line number Diff line number Diff line change 11module github.com/gofiber/storage/clickhouse
22
3- go 1.24.0
3+ go 1.25.3
44
55require (
66 github.com/ClickHouse/clickhouse-go/v2 v2.41.0
You can’t perform that action at this time.
0 commit comments