From 897cb087e7737da53b1b2815233445499b620866 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Fri, 6 Jan 2023 10:30:25 +0100 Subject: [PATCH] Fix pre-test-cmd paste in wrong context --- .github/workflows/ansible-test-plugins.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ansible-test-plugins.yml b/.github/workflows/ansible-test-plugins.yml index d86b237..2c286b6 100644 --- a/.github/workflows/ansible-test-plugins.yml +++ b/.github/workflows/ansible-test-plugins.yml @@ -120,13 +120,13 @@ jobs: Ansible version ${{ matrix.ansible }} under Python ${{ matrix.python }} uses: ansible-community/ansible-test-gh-action@release/v1 - pre-test-cmd: >- - echo Setting db_engine_version to "${{ matrix.db_engine_version }}"...; - echo -n "${{ matrix.db_engine_version }}" > tests/integration/db_engine_version; - echo Setting Connector version to "${{ matrix.connector }}"...; - echo -n "${{ matrix.connector }}" > tests/integration/connector with: ansible-core-version: ${{ matrix.ansible }} + pre-test-cmd: >- + echo Setting db_engine_version to "${{ matrix.db_engine_version }}"...; + echo -n "${{ matrix.db_engine_version }}" > tests/integration/db_engine_version; + echo Setting Connector version to "${{ matrix.connector }}"...; + echo -n "${{ matrix.connector }}" > tests/integration/connector target-python-version: ${{ matrix.python }} testing-type: integration