From 1fd1f17651fbc9c7c46fcc03f9c2eb20dab0796c Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Mon, 3 Feb 2025 20:16:06 +0100 Subject: [PATCH] #3224 ci: fix if clause Signed-off-by: Patrizio Bekerle --- .github/workflows/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index a43fc129b1..29d3b21080 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -193,7 +193,7 @@ jobs: version: ${{ matrix.qt-version }} modules: ${{env.QT_MODULES}} cache: true - - if: false == contains( matrix.os, 'windows') && startsWith( matrix.qt-version, '6.' ) + - if: contains( matrix.os, 'windows') && startsWith( matrix.qt-version, '6.' ) name: Make sure MSVC is found on Windows for Qt 6 uses: ilammy/msvc-dev-cmd@v1