aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 6682a6885d0cd8b0d1377fc00590949cf9c77439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
                uses: actions/setup-java@v4
                with:
                    java-version: '17'
                    distribution: 'temurin'
            -   uses: gradle/actions/setup-gradle@v4
            -   run: |
                    ./gradlew build
                env:
                    KOTLIN_VERSION: ${{ matrix.kotlin-version }}
                name: This will infinitely hang
        runs-on: ubuntu-latest