Skip to content

Upgrade Gradle and Kotlin version #67

Upgrade Gradle and Kotlin version

Upgrade Gradle and Kotlin version #67

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
java: [ '17', '21' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Submodules
run: git submodule update --init
- name: Build
run: TERM=dumb ./gradlew test jar
- name: Store reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: reports
path: |
**/build/reports/
**/build/test-results/
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'