From b87d11502bedcc1c1e6f06857991b8a0c253fe47 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 30 Jul 2024 10:36:02 +0200 Subject: [PATCH] Added UCRT64 before scripts. --- .github/workflows/UnitTesting.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/UnitTesting.yml b/.github/workflows/UnitTesting.yml index a7fdc83..9c1754f 100644 --- a/.github/workflows/UnitTesting.yml +++ b/.github/workflows/UnitTesting.yml @@ -64,6 +64,11 @@ on: required: false default: '' type: string + ucrt64_before_scripts: + description: 'Scripts to execute before pytest on Windows within MSYS2 UCRT64.' + required: false + default: '' + type: string root_directory: description: 'Working directory for running tests.' required: false @@ -282,6 +287,10 @@ jobs: if: matrix.system == 'ubuntu' && inputs.ubuntu_before_script != '' run: ${{ inputs.ubuntu_before_script }} + - name: 🐧 UCRT64 before scripts + if: matrix.system == 'msys2' && matrix.runtime == 'UCRT64' && inputs.ucrt64_before_script != '' + run: ${{ inputs.ucrt64_before_script }} + # Read pyproject.toml - name: 🔁 Extract configurations from pyproject.toml