From 599d819dc9a9d6d2f04730262ba40ff0e797d917 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sat, 22 Mar 2025 00:28:21 -0700 Subject: [PATCH] Add call to Windows run steps --- .github/workflows/bld.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index 6d9f43f..4f69f88 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -1,6 +1,6 @@ name: bld-ci -on: [ push, pull_request, workflow_dispatch ] +on: [push, pull_request, workflow_dispatch] env: ALPHAVANTAGE_API_KEY: ${{ secrets.ALPHAVANTAGE_API_KEY }} @@ -22,8 +22,8 @@ jobs: strategy: matrix: - java-version: [ 17, 21, 24 ] - kotlin-version: [ 1.9.25, 2.0.20, 2.1.20 ] + java-version: [17, 21, 24] + kotlin-version: [1.9.25, 2.0.20, 2.1.20] steps: - name: Checkout source repository @@ -73,10 +73,10 @@ jobs: java-version: "17" - name: Download dependencies - script: bld.bat download + run: call bld.bat download - name: Compile source - script: bld.bat compile + run: call bld.bat compile - name: Run tests - script: bld.bat jacoco + run: call bld.bat jacoco