Prepare v4.5.1 #2130
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: Backend unit 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: | |
- 22.3 | |
- 22.8 | |
- 22.9 | |
- '22.10' | |
- 22.11 | |
- latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: Build backend | |
uses: magefile/mage-action@v3 | |
with: | |
args: buildAll | |
version: latest | |
- name: Run backend tests | |
run: CLICKHOUSE_VERSION=${{ matrix.clickhouse }} go test -v ./... |