diff --git a/.github/workflows/test_clickhouse_version.yml b/.github/workflows/test_clickhouse_version.yml new file mode 100644 index 00000000..67b879a9 --- /dev/null +++ b/.github/workflows/test_clickhouse_version.yml @@ -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