chore: support for kotlin 2.x
#919
Workflow file for this run
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: Gradle Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3.6.0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3.12.0 | |
with: | |
java-version: 11 | |
distribution: liberica | |
- name: Gradle Wrapper Validation | |
uses: gradle/wrapper-validation-action@v1.1.0 | |
- name: Gradle Build | |
uses: gradle/gradle-build-action@v2.7.1 | |
with: | |
arguments: build --stacktrace -x test | |
# - name: Gradle Test | |
# run: ./gradlew test --stacktrace | |
- name: Upload Test Report | |
uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: test-report | |
path: | | |
reflekt-plugin/build/reports/tests/**/* |