Add a verify stage at setup of test to assert all version are correct

This commit is contained in:
Laurent Indermuehle 2023-01-19 16:37:06 +01:00
commit 6bc293a022
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
5 changed files with 72 additions and 3 deletions

View file

@ -583,7 +583,11 @@ jobs:
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
echo -n "${{ matrix.connector }}" > tests/integration/connector;
echo Setting Python version to "${{ matrix.python }}"...;
echo -n "${{ matrix.python }}" > tests/integration/python;
echo Setting Ansible version to "${{ matrix.ansible }}"...;
echo -n "${{ matrix.ansible }}" > tests/integration/ansible
docker-image: ${{ matrix.docker_image }}
target-python-version: ${{ matrix.python }}
testing-type: integration