Update Freeletics Gradle Plugin to v0.16.0 #2757
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 22 | |
- uses: gradle/actions/setup-gradle@v4 | |
with: | |
validate-wrappers: true | |
- name: Install Android SDK | |
run: ./.github/android-sdk.sh | |
- name: Lint check with Ktlint | |
run: ./kotlinw .kts/ktlint.main.kts | |
- name: Build with Gradle | |
run: ./gradlew build buildHealth --stacktrace |