From a2a5f284b646aecf2ac93cacae4b72cbc757e5f7 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 23 Mar 2025 03:00:00 -0700 Subject: [PATCH] Add workflow for testing the examples on Windows --- .github/workflows/bld.yml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index d01b562..c4a5206 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -6,7 +6,7 @@ env: KOTLIN_HOME: /usr/share/kotlinc jobs: - build-bld-project: + build-bld-linux: runs-on: ubuntu-latest strategy: @@ -39,3 +39,26 @@ jobs: - name: Run tests run: ./bld compile test + + build-bld-windows: + runs-on: windows-latest + + steps: + - name: Checkout source repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: "zulu" + java-version: 17 + + - name: Download dependencies [examples] + working-directory: examples + run: ./bld download + + - name: Run tests [examples] + working-directory: examples + run: ./bld compile test \ No newline at end of file