From 3a128019caef34a9ae33f277e84df7078c9a3429 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 5 Jan 2023 19:34:12 +0100 Subject: [PATCH] Fix pre-test-cmd missing separators --- .github/workflows/ansible-test-plugins.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ansible-test-plugins.yml b/.github/workflows/ansible-test-plugins.yml index cbceca2..7cae151 100644 --- a/.github/workflows/ansible-test-plugins.yml +++ b/.github/workflows/ansible-test-plugins.yml @@ -125,9 +125,9 @@ jobs: ansible-core-version: ${{ matrix.ansible }} pre-test-cmd: >- >&2 echo Setting db_engine_version to ${{ matrix.db_engine_version }}...; - echo ${{ matrix.db_engine_version }} > tests/integration/db_engine_version + echo "${{ matrix.db_engine_version }}" > tests/integration/db_engine_version; >&2 echo Setting Connector version to ${{ matrix.connector }}...; - echo ${{ matrix.connector }} > tests/integration/connector + echo "${{ matrix.connector }}" > tests/integration/connector target-python-version: ${{ matrix.python }} testing-type: integration