Skip to content

CI changes

CI changes #596

name: Tests head
permissions: write-all
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
pull_request:
types: [opened, labeled, synchronize, reopened]
jobs:
test:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'tests:run-head'))
runs-on: [self-hosted, style-checker-aarch64]
strategy:
fail-fast: true
matrix:
go:
- "1.23"
clickhouse:
- "head"
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