From c04359b5e9bbfd50926d45321b6e7b3fdeae6e87 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Tue, 26 Nov 2024 22:38:14 +0100 Subject: Add multiple kotlin versions as test --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e1f2d21..6682a68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,9 @@ on: - push jobs: compile: + strategy: + matrix: + kotlin-version: ["2.0.20", "2.0.21", "2.1.0-RC2", "1.9.25"] steps: - uses: actions/checkout@v4 - name: Set up JDK 17 for x64 @@ -12,6 +15,8 @@ jobs: - uses: gradle/actions/setup-gradle@v4 - run: | ./gradlew build + env: + KOTLIN_VERSION: ${{ matrix.kotlin-version }} name: This will infinitely hang runs-on: ubuntu-latest -- cgit