From a684ab613718296c09118f441d2c887988428942 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Mon, 25 Mar 2024 11:24:52 +0100 Subject: [PATCH] Correcting Java workflow file --- .github/workflows/ci-java.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-java.yml b/.github/workflows/ci-java.yml index 6a87af2ac4d2f..4ba6d9315011e 100644 --- a/.github/workflows/ci-java.yml +++ b/.github/workflows/ci-java.yml @@ -20,7 +20,7 @@ jobs: browser: chrome cache-key: java-${{ matrix.os }}-tests run: | - if [[ "${{ runner.os }}" == "windows" ]]; then + if [[ "${{ matrix.os }}" == "windows" ]]; then bazel test //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest ^ //java/test/org/openqa/selenium/federatedcredentialmanagement:FederatedCredentialManagementTest ^ //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest ^ @@ -53,7 +53,7 @@ jobs: browser: chrome cache-key: java-${{ matrix.os }}-remote-tests run: | - if [[ "${{ runner.os }}" == "windows" ]]; then + if [[ "${{ matrix.os }}" == "windows" ]]; then bazel test //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote ^ //java/test/org/openqa/selenium/grid/router:RemoteWebDriverDownloadTest-remote else