We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c54c19 commit d806df4Copy full SHA for d806df4
.github/workflows/nightly.yml
@@ -0,0 +1,17 @@
1
+name: Nightly head test
2
+
3
+on:
4
+ schedule:
5
+ # Run once a day at 2:00 AM UTC
6
+ - cron: '0 2 * * *'
7
+ workflow_dispatch: # Allow manual triggering
8
9
+jobs:
10
+ test-head:
11
+ name: Test against ClickHouse HEAD
12
+ uses: ./.github/workflows/reusable.yml
13
+ secrets: inherit
14
+ with:
15
+ clickhouse-version: head
16
+ permissions:
17
+ statuses: write
.github/workflows/tests.yml
@@ -30,6 +30,7 @@ jobs:
30
fail-fast: false
31
matrix:
32
version:
33
+ - "latest"
34
- "25.10"
35
- "25.9"
36
- "25.8"
0 commit comments