fix(deps): update dependency com.google.android.libraries.identity.go… #4556
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '21' | |
| - name: Decrypt secrets | |
| run: ./release/decrypt-secrets.sh | |
| env: | |
| ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }} | |
| - name: Run Code Quality Checks | |
| run: ./gradlew check | |
| - name: Screenshot Tests | |
| run : ./gradlew testDebugUnitTest -Proborazzi.test.verify=true | |
| # run: ./gradlew globalCiVerifyRoborazzi -Pfoundry.test.snapshots=true -Proborazzi.cleanupOldScreenshots=true --stacktrace |