Skip to content

Bump codecov/codecov-action from 4.3.0 to 4.4.1 #86

Bump codecov/codecov-action from 4.3.0 to 4.4.1

Bump codecov/codecov-action from 4.3.0 to 4.4.1 #86

Workflow file for this run

name: Android Lint
on:
pull_request:
jobs:
android_lint:
name: Run Android Lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/[email protected]
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Setup reviewdog
uses: reviewdog/[email protected]
- name: Cache Gradle Files
uses: actions/[email protected]
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: Run Android Lint
run: ./gradlew scratchoff:lintDebug
- name: Review Lint Results
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cat scratchoff/build/reports/lint-results-debug.sarif \
| reviewdog \
-name=android-lint \
-f=sarif \
-reporter=github-pr-review \
-level=warning