Skip to content

Commit be07e52

Browse files
authored
Test against latest and head CH (#1060)
* Test against latest and head CH * Run tests again head in separate job * Update run-tests-head.yml * Update run-tests-head.yml
1 parent 52c92d1 commit be07e52

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: run-tests-head
2+
3+
permissions: write-all
4+
5+
on:
6+
schedule:
7+
- cron: "0 0 * * *"
8+
9+
jobs:
10+
test-ch-head:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: true
14+
max-parallel: 1
15+
matrix:
16+
go:
17+
- "1.19.10"
18+
- "1.20.5"
19+
steps:
20+
- uses: actions/checkout@main
21+
22+
- name: Install Go ${{ matrix.go }}
23+
uses: actions/[email protected]
24+
with:
25+
stable: false
26+
go-version: ${{ matrix.go }}
27+
28+
- name: Run tests
29+
run: |
30+
CLICKHOUSE_VERSION=head make test

.github/workflows/run-tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ on:
1111
branches:
1212
- v1
1313
- main
14-
schedule:
15-
- cron: "0 9 1 * *"
1614

1715
jobs:
1816
single-node:
@@ -29,7 +27,7 @@ jobs:
2927
- "23.3"
3028
- "23.5"
3129
- "23.6"
32-
- "23.7"
30+
- "latest"
3331
steps:
3432
- uses: actions/checkout@main
3533

0 commit comments

Comments
 (0)