Update dependency com.freeletics.flowredux2:flowredux to v2.1.0 (#1442) #6583
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 | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| 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 | |
| - uses: gradle/actions/setup-gradle@v5.0.2 | |
| with: | |
| validate-wrappers: true | |
| - name: Install Android SDK | |
| run: ./.github/android-sdk.sh | |
| - name: Build with Gradle | |
| run: ./gradlew build buildHealth --stacktrace | |
| - name: Check code style | |
| run: ./kotlinw scripts/ktlint.main.kts --fail-on-changes |