⏪️ Revert commit d787a7036aedff2afb6a7c8200886f897ccb8d7a (#699) #1125
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-13 | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/[email protected] | |
- name: Check 'plugins' project | |
run: ./gradlew :plugins:check | |
- name: Check 'types-internal' project | |
run: ./gradlew :types-internal:check | |
- name: Check 'types' project | |
run: ./gradlew :types:check | |
- name: Check 'types-kotlinx-serialization' project | |
run: ./gradlew :types-kotlinx-serialization:check |