WalletConnect Gaslimit #2278
Workflow file for this run
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: 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: 17 | |
cache: gradle | |
- name: Run detekt | |
run: ./gradlew :app:detekt | |
continue-on-error: true | |
- name: Run Android Lint | |
run: ./gradlew :app:lintAnalyticsDebug |