aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/detekt.yml
blob: a3ae8eaf8c24fc88ea94ea7f960cb0fcc8dbf768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Detekt

on:
  - pull_request
  - push
permissions: {}
jobs:
  detektering:
    runs-on: ubuntu-latest
    if: "!contains(github.event.head_commit.message, '[no infer]')"
    steps:
      - uses: actions/checkout@v3
        name: Checkout feature
      - name: Set up JDK 17
        uses: actions/setup-java@v3
        with:
          java-version: 17
          distribution: temurin
          cache: gradle
      - name: Set up gradle cache
        uses: gradle/gradle-build-action@v2
      - name: Run detekt
        run: |
          ./gradlew :detektMain --stacktrace
      - name: Generate report
        run: |
          jq -r '.runs[].results[]|select(.level != "error")|{"message":.message.text, "locations":.locations[].physicalLocation}|("::warning file="+(.locations.artifactLocation.uri|sub("^'"$(readlink -f .)"'"; ""))+",line="+(.locations.region.startLine|tostring)+",endLine="+(.locations.region.endLine|tostring)+",col="+(.locations.region.startColumn|tostring)+",endColumn="+(.locations.region.endColumn|tostring)+"::"+.message)' <build/reports/detekt/main.sarif
          jq -r '.runs[].results[]|select(.level == "error")|{"message":.message.text, "locations":.locations[].physicalLocation}|("::error file="+(.locations.artifactLocation.uri|sub("^'"$(readlink -f .)"'"; ""))+",line="+(.locations.region.startLine|tostring)+",endLine="+(.locations.region.endLine|tostring)+",col="+(.locations.region.startColumn|tostring)+",endColumn="+(.locations.region.endColumn|tostring)+"::"+.message)' <build/reports/detekt/main.sarif
          bugcount=$(jq -r '[.runs[].results[]] | length ' <build/reports/detekt/main.sarif)
          echo "> This PR introduces **$bugcount** potential bug(s)." >>$GITHUB_STEP_SUMMARY
          echo >>$GITHUB_STEP_SUMMARY
          cat <build/reports/detekt/main.md >>$GITHUB_STEP_SUMMARY
          [[ $bugcount != 0 ]] && exit 1 || echo ok.