Skip to content

Bump androidx.hilt:hilt-navigation-compose from 1.2.0 to 1.3.0 #463

Bump androidx.hilt:hilt-navigation-compose from 1.2.0 to 1.3.0

Bump androidx.hilt:hilt-navigation-compose from 1.2.0 to 1.3.0 #463

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