Bump version to 3.88 for release #2335
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: Android lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| lint: | |
| name: Comments lint result on Master | |
| runs-on: macos-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: oracle | |
| java-version: 21 | |
| cache: gradle | |
| - name: Run detekt | |
| run: ./gradlew :app:detekt | |
| continue-on-error: true | |
| - name: Run Android Lint | |
| run: ./gradlew :app:lintAnalyticsDebug |