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