From 9fe14d8f048f6af135e6b5179bb15e0474da6b55 Mon Sep 17 00:00:00 2001 From: Andrey Kholmogorov <63207701+Varagon007@users.noreply.github.com> Date: Tue, 26 Sep 2023 10:52:19 +0200 Subject: [PATCH] Add external run action test-integration (#72) * Add external run action test-integration * Correct workflow name * Correct after review --- .github/workflows/test_clickhouse_version.yml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test_clickhouse_version.yml diff --git a/.github/workflows/test_clickhouse_version.yml b/.github/workflows/test_clickhouse_version.yml new file mode 100644 index 00000000..8cd9bb33 --- /dev/null +++ b/.github/workflows/test_clickhouse_version.yml @@ -0,0 +1,28 @@ +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 + - name: set up python + uses: actions/setup-python@v4 + with: + python-version: "3.11" + - name: run integration tests + run: CLICKHOUSE_VERSION=${{ inputs.clickhouse_version }} make test-integration