From 48b92c33fdd8d2f973f346e1c0da7c29c16915c2 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sat, 22 Mar 2025 00:35:11 -0700 Subject: [PATCH] Set the shell cmd under Windows --- .github/workflows/bld.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index 4f69f88..13359e8 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -73,10 +73,13 @@ jobs: java-version: "17" - name: Download dependencies - run: call bld.bat download + run: bld.bat download + shell: cmd - name: Compile source - run: call bld.bat compile + run: bld.bat compile + shell: cmd - name: Run tests - run: call bld.bat jacoco + run: bld.bat jacoco + shell: cmd