Update dependency gradle to v8.11.1 #107
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: Verify all platforms | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
verify: | |
name: Run detekt and build all platforms | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Check public API changes | |
run: ./gradlew apiCheck | |
- name: Execute Gradle build | |
run: ./gradlew detekt | |
- name: Build Android target | |
run: ./gradlew example:app:composeApp:assembleDebug | |
- name: Build Desktop target | |
run: ./gradlew example:app:composeApp:package | |
- name: Build Web target | |
run: ./gradlew example:app:composeApp:wasmJsBrowserDistribution |