Skip to content

CI changes

CI changes #2024

Workflow file for this run

name: Tests matrix
permissions: write-all
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: [self-hosted, style-checker-aarch64]
strategy:
matrix:
go:
- "1.23"
- "1.22"
clickhouse: # https://github.com/ClickHouse/ClickHouse/blob/master/SECURITY.md#scope-and-supported-versions
- "24.9"
- "24.8"
- "24.7"
- "24.3"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Tests
run: |
CLICKHOUSE_VERSION=${{ matrix.clickhouse }} make test