Skip to content

Merge pull request #1 from korge-showcases/soywiz/korge.6.0.0-beta4 #2

Merge pull request #1 from korge-showcases/soywiz/korge.6.0.0-beta4

Merge pull request #1 from korge-showcases/soywiz/korge.6.0.0-beta4 #2

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: "🧪 Testing"
on:
push
env:
JAVA_DISTRIBUTION: zulu
JAVA_VERSION: 21
concurrency:
group: "testing"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- { uses: actions/checkout@v4 }
- { name: Set up JDK, uses: actions/setup-java@v3, with: { distribution: "${{ env.JAVA_DISTRIBUTION }}", java-version: "${{ env.JAVA_VERSION }}" } }
- { name: Prepare Gradle, uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 } # v3.1.0
- { name: Build with Gradle, run: ./gradlew jvmTest }