From c63224fc1185ba15be71289e92ff32ce2e6d7513 Mon Sep 17 00:00:00 2001 From: David Cole <40234707+DavidArthurCole@users.noreply.github.com> Date: Sun, 29 Sep 2024 03:40:09 -0400 Subject: Backend: `detekt` -> `detektMain` (#2613) Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e42909ee..143c59466 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,14 +44,15 @@ jobs: # - name: Checkout code # uses: actions/checkout@v4 # - uses: ./.github/actions/setup-normal-workspace - # - name: Run detekt + # # detektMain is a LOT slower than detekt, but it does type analysis + # - name: Run detekt main (w/typing analysis) # run: | - # ./gradlew detekt --stacktrace + # ./gradlew detektMain --stacktrace # - name: Annotate detekt failures # if: ${{ !cancelled() }} # run: | # chmod +x .github/scripts/process_detekt_sarif.sh - # ./.github/scripts/process_detekt_sarif.sh versions/1.8.9/build/reports/detekt/detekt.sarif + # ./.github/scripts/process_detekt_sarif.sh versions/1.8.9/build/reports/detekt/main.sarif preprocess: -- cgit