diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 5 insertions, 0 deletions
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 |