mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
Fix syntax error
This commit is contained in:
parent
a0ef7e03e7
commit
d010394bdb
2 changed files with 7 additions and 7 deletions
2
.github/workflows/android.yml
vendored
2
.github/workflows/android.yml
vendored
|
|
@ -100,6 +100,6 @@ jobs:
|
|||
run: ./gradlew detekt
|
||||
- name: Upload SARIF to Github using the upload-sarif action
|
||||
uses: github/codeql-action/upload-sarif@v1
|
||||
if: $
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
sarif_file: build/report/detekt.sarif
|
||||
|
|
|
|||
12
build.gradle
12
build.gradle
|
|
@ -36,16 +36,16 @@ detekt {
|
|||
baseline = file("${rootProject.projectDir}/detekt_baseline.xml")
|
||||
reports {
|
||||
xml {
|
||||
enabled = true // Enable/Disable XML report (default: true)
|
||||
destination = file("build/reports/detekt.xml") // Path where XML report will be stored (default: `build/reports/detekt/detekt.xml`)
|
||||
enabled = true
|
||||
destination = file("build/reports/detekt.xml")
|
||||
}
|
||||
html {
|
||||
enabled = true // Enable/Disable HTML report (default: true)
|
||||
destination = file("build/reports/detekt.html") // Path where HTML report will be stored (default: `build/reports/detekt/detekt.html`)
|
||||
enabled = true
|
||||
destination = file("build/reports/detekt.html")
|
||||
}
|
||||
sarif {
|
||||
enabled = true // Enable/Disable TXT report (default: true)
|
||||
destination = file("build/reports/detekt.sarif") // Path where TXT report will be stored (default: `build/reports/detekt/detekt.txt`)
|
||||
enabled = true
|
||||
destination = file("build/reports/detekt.sarif")
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue