Skip to content

chore: added lint report #1

chore: added lint report

chore: added lint report #1

Workflow file for this run

name: Lint and Upload SARIF
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
- name: Run Android Lint
run: ./gradlew lint
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: app/build/reports/lint-results.sarif