✨ Update KotoolsSamplesJvmPlugin.apply(Project)
method
#1039
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: Integration | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '**.api' | |
- '**.kt' | |
- '**.kts' | |
- .github/workflows/integration.yml | |
- gradle/** | |
- gradle.properties | |
- gradlew | |
- gradlew.bat | |
- yarn.lock | |
push: | |
branches: [ main ] | |
paths: | |
- '**.api' | |
- '**.kt' | |
- '**.kts' | |
- .github/workflows/integration.yml | |
- gradle/** | |
- gradle.properties | |
- gradlew | |
- gradlew.bat | |
- yarn.lock | |
workflow_dispatch: | |
jobs: | |
checks: | |
name: Checks | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
project: [ plugins, types-internal, types, types-kotlinx-serialization ] | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/[email protected] | |
- name: Setup Gradle | |
uses: gradle/actions/[email protected] | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Run all checks | |
run: ./gradlew :$PROJECT:check | |
env: | |
PROJECT: ${{ matrix.project }} |