Upgrade Kotlin version with additional targets #116
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: Run Gradle on PRs | |
on: pull_request | |
jobs: | |
gradle: | |
runs-on: macos-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup and execute Gradle 'build' task | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build -x jsBrowserTest | |
- name: Upload allTests results | |
uses: actions/upload-artifact@v2.2.3 | |
with: | |
name: allTests | |
path: ./**/build/reports/tests/allTests |