Align allow_suspicious_low_cardinality_types
and allow_suspicious_low_cardinality_types
settings in tests due to ClickHouse Cloud incompatibility
#1899
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-tests | |
permissions: write-all | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
single-node: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
max-parallel: 1 | |
matrix: | |
go: | |
- "1.22" | |
- "1.21" | |
clickhouse: # https://github.com/ClickHouse/ClickHouse/blob/master/SECURITY.md#scope-and-supported-versions | |
- "24.5" | |
- "24.4" | |
- "24.3" | |
- "23.8" | |
steps: | |
- uses: actions/checkout@main | |
- name: Install Go ${{ matrix.go }} | |
uses: actions/[email protected] | |
with: | |
stable: false | |
go-version: ${{ matrix.go }} | |
- name: Run tests | |
run: | | |
CLICKHOUSE_VERSION=${{ matrix.clickhouse }} make test |