From 9ea651d0c601526551585738b478fe1452392fcb Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 24 Mar 2025 21:37:56 -0700 Subject: [PATCH] Add Windows and macOS testing --- .github/workflows/bld.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index bdd3185..1fcc6f8 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -2,17 +2,15 @@ name: bld-ci on: [push, pull_request, workflow_dispatch] -env: - KOTLIN_HOME: /usr/share/kotlinc - jobs: build-gradle-project: - runs-on: ubuntu-latest - strategy: matrix: java-version: [17, 21, 24] kotlin-version: [1.9.25, 2.1.20] + os: [ ubuntu-latest, windows-latest, macos-latest ] + + runs-on: ${{ matrix.os }} steps: - name: Checkout source repository