-
Notifications
You must be signed in to change notification settings - Fork 114
46 lines (40 loc) · 886 Bytes
/
integration.yml
File metadata and controls
46 lines (40 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Integration tests
on:
push:
branches:
- v1
- main
pull_request:
branches:
- v1
- main
schedule:
- cron: '0 9 1 * *'
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
clickhouse:
- 24.8
- 25.3
- 25.5
- 25.6
- 25.7
- latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Build backend
uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b
with:
args: buildAll
version: latest
- name: Run integration tests
run: CLICKHOUSE_VERSION=${{ matrix.clickhouse }} go test -v -tags=integration ./...