diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index d15477f..84c951a 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -25,6 +25,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Checkout libuv (for Windows) + if: matrix.os == 'windows-latest' uses: actions/checkout@v3 with: repository: libuv/libuv @@ -52,7 +53,7 @@ jobs: - name: Run tests run: | if [ "$RUNNER_OS" == "Windows" ]; then - PATH=build/Debug:$PATH sbt "$SBT_NATIVE_COMPILE $SBT_NATIVE_LINK show nativeCompileOptions ; show nativeLinkingOptions ; test" + PATH=libuv-build/build/Debug:$PATH sbt "$SBT_NATIVE_COMPILE $SBT_NATIVE_LINK show nativeCompileOptions ; show nativeLinkingOptions ; test" else sbt "$SBT_NATIVE_COMPILE $SBT_NATIVE_LINK show nativeCompileOptions ; show nativeLinkingOptions ; test" fi