diff --git a/.github/workflows/detekt.yml b/.github/workflows/detekt.yml index b339635..f76f086 100644 --- a/.github/workflows/detekt.yml +++ b/.github/workflows/detekt.yml @@ -87,4 +87,4 @@ jobs: if: success() || failure() env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: reviewdog -f=sarif -diff="git diff FETCH_HEAD" -name="detekt" -reporter=github-pr-review < build/reports/detekt/merge.sarif.json + run: reviewdog -f=sarif -diff="git diff FETCH_HEAD" -name="detekt" -reporter=github-check < build/reports/detekt/merge.sarif.json diff --git a/.github/workflows/mobsf.yml b/.github/workflows/mobsf.yml index edd4ba0..11ae937 100644 --- a/.github/workflows/mobsf.yml +++ b/.github/workflows/mobsf.yml @@ -64,4 +64,4 @@ jobs: env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: success() || failure() - run: reviewdog -f=sarif -diff="git diff FETCH_HEAD" -name="mobsf" -reporter=github-pr-review < mobsf.sarif.json + run: reviewdog -f=sarif -diff="git diff FETCH_HEAD" -name="mobsf" -reporter=github-check < mobsf.sarif.json diff --git a/app/src/test/java/io/fusionauth/sdk/ExampleUnitTestReviewdog.kt b/app/src/test/java/io/fusionauth/sdk/ExampleUnitTestReviewdog.kt deleted file mode 100644 index 19e278d..0000000 --- a/app/src/test/java/io/fusionauth/sdk/ExampleUnitTestReviewdog.kt +++ /dev/null @@ -1,17 +0,0 @@ -package io.fusionauth.sdk - -import org.junit.Test - -import org.junit.Assert.* - -/** - * Example local unit test, which will execute on the development machine (host). - * - * See [testing documentation](http://d.android.com/tools/testing). - */ -class ExampleUnitTestReviewdog { - @Test - fun addition_isCorrect() { - assertEquals(4, 2 + 2) - } -} \ No newline at end of file