Skip to content

Commit

Permalink
force detekt to finish
Browse files Browse the repository at this point in the history
  • Loading branch information
jesmrec committed Feb 11, 2025
1 parent 55450e8 commit 61db6b9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,17 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: detekt execution
run: ./gradlew detekt; ./gradlew owncloudDomain:detekt; ./gradlew owncloudData:detekt; ./gradlew owncloudComLibrary:detekt; ./gradlew owncloudTestUtil:detekt
run: ./gradlew detekt
- name: Report success to GitHub
if: success()
uses: actions/github-script@v6
with:
script: |
github.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
state: "success",
context: "detekt",
description: "Detekt check completed"
})

0 comments on commit 61db6b9

Please sign in to comment.