build(deps): bump androidx.compose:compose-bom from 2024.02.00 to 2024.09.00 #20
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 Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Spotless check | |
run: ./gradlew spotlessCheck | |
- name: Detekt check | |
run: ./gradlew detekt | |
- name: Run Tests | |
run: ./gradlew testDebug |