Skip to content

Commit

Permalink
Add external run action test-integration (#64)
Browse files Browse the repository at this point in the history
* NEBIUSMDB-775 add ext run test_integration

* Correct wf name and inputs
  • Loading branch information
Varagon007 authored Sep 26, 2023
1 parent e0cee51 commit 4549510
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test_clickhouse_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test_clickhouse_version

run-name: ${{ github.workflow }}_${{ inputs.clickhouse_version }}_${{ inputs.id || github.run_number }}

on:
workflow_dispatch:
inputs:
clickhouse_version:
description: 'ClickHouse version'
required: true
type: string
id:
description: 'Run identifier'
required: false
type: string
default: ""

jobs:
test_integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup_dependencies
with:
python-version: "3.11"
- name: run integration tests
run: CLICKHOUSE_VERSION=${{ inputs.clickhouse_version }} make test-integration

0 comments on commit 4549510

Please sign in to comment.