Update dependency com.google.firebase.appdistribution to v5.1.0 #1035
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" | |
on: | |
push | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up config files | |
env: | |
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
run: | | |
echo $GOOGLE_SERVICES_JSON > ./app/google-services.json | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: zulu | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Verify Spotless | |
run: ./gradlew spotlessCheck | |
- name: Verify Detekt | |
run: ./gradlew detekt | |
- name: Run Android Lint | |
run: ./gradlew :app:lint | |
- name: Run Unit Tests | |
run: ./gradlew koverXmlReport | |
- name: Run Sonar Cloud Scan | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew sonar --info |