Kotlin updated to 2.0.20. #492 #427
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [11, 17] | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v3 | |
- name: JDK setup | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: temurin | |
- name: Gradle setup | |
uses: gradle/gradle-build-action@v2 | |
- name: Gradle wrapper validation | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Build | |
run: ./gradlew assemble install -x dokkaHtml -x dokkaZip | |
- name: Tests | |
run: ./gradlew check --continue | |
env: | |
TEST_PROFILE: ci |