Skip to content

Bump androidxNavigation from 2.8.9 to 2.9.4 #461

Bump androidxNavigation from 2.8.9 to 2.9.4

Bump androidxNavigation from 2.8.9 to 2.9.4 #461

Workflow file for this run

name: Run detekt and androidLint
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-java
- name: Run detekt
run: ./gradlew detekt --no-daemon
- name: Upload detekt SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ./build/reports/detekt/merge.sarif
category: detekt
- name: Run androidLint
run: ./gradlew lintDebug --no-daemon
- name: Upload androidLint SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ./app/build/reports/lint-results-debug.sarif
category: androidLint