⬆️ Bump actions/checkout
from 4.1.7 to 4.2.1
#1063
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: 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: Setup Gradle | |
uses: gradle/actions/[email protected] | |
- name: Run all checks | |
run: ./gradlew :$PROJECT:check | |
env: | |
PROJECT: ${{ matrix.project }} |