Update kotlin monorepo #2126
Workflow file for this run
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: Build simple sample | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: Build simple sample | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7.0.0 | |
| - name: Install JDK | |
| uses: actions/setup-java@v5.3.0 | |
| with: | |
| distribution: zulu | |
| java-version: 24 | |
| - name: Install Android SDK | |
| run: ./.github/android-sdk.sh | |
| - uses: gradle/actions/setup-gradle@v5.0.2 | |
| - name: Build with Gradle | |
| run: ./gradlew -p sample/simple :app:simple-android:assembleDebug :app:simple-desktop:assemble lint --stacktrace |