From 12fbc2fd573d754fe211d0a8c9bcd3bf189136f5 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Tue, 20 May 2025 09:09:42 -0400 Subject: [PATCH] ci: do not run the Install Depends step of the Install Dependencies action on windows since it does nothing anyway --- .github/actions/install-dependencies/action.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 17c1a56e4..05af0559c 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -27,10 +27,9 @@ runs: steps: - name: Install Depends + if: ${{ runner.os != 'Windows' }} run: | - if [ "$RUNNER_OS" == "Windows" ]; then - echo "Window not supported yet" - elif [ "$RUNNER_OS" == "macOS" ]; then + if [ "$RUNNER_OS" == "macOS" ]; then brew install googletest openssl --quiet elif [ "$RUNNER_OS" == "Linux" ]; then if [ ${{inputs.like}} == "debian" ]; then