⏪️ Revert commit 00afbe965fdb6e5bd89aa71325c205d1f4232acf #110
This file contains hidden or 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: Integration | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '**.api' | |
- '**.kt' | |
- '**.kts' | |
- .github/workflows/integration.yml | |
- gradle/** | |
- gradle.properties | |
- gradlew | |
- gradlew.bat | |
push: | |
branches: [ main ] | |
paths: | |
- '**.api' | |
- '**.kt' | |
- '**.kts' | |
- .github/workflows/integration.yml | |
- gradle/** | |
- gradle.properties | |
- gradlew | |
- gradlew.bat | |
workflow_dispatch: | |
jobs: | |
checks: | |
name: Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.2.2 | |
- name: Setup Java | |
uses: actions/setup-java@v4.7.1 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v4.3.1 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4.3.1 | |
- name: Check 'jvm' Gradle project | |
run: ./gradlew :jvm:check | |
- name: Check 'jvm-demo' Gradle project | |
run: ./gradlew :jvm-demo:check |