From e1f177d3250e481324b3d802c915aa8fa39f7d0d Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sat, 4 Jan 2025 18:16:59 +0100 Subject: [PATCH] chore: testing `--warning-mode all` --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfd252048..5f5f22eb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: - name: '👷 Build' id: build - run: ./gradlew assembleRelease + run: ./gradlew assembleRelease --warning-mode all - name: '📦 Archive APKs' uses: actions/upload-artifact@v4 with: @@ -60,7 +60,7 @@ jobs: - name: '🧑‍🔬 Test' id: test - run: ./gradlew globalCiUnitTest verifyPaparazziRelease + run: ./gradlew globalCiUnitTest verifyPaparazziRelease --warning-mode all - name: '📦 Archive JUnit reports' if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.test.outcome) }} uses: ./.github/actions/archive-junit-reports @@ -80,7 +80,7 @@ jobs: - name: '🕵️ Lint' id: lint - run: ./gradlew lintRelease + run: ./gradlew lintRelease --warning-mode all - name: '📦 Archive Lint reports' if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.lint.outcome) }} uses: ./.github/actions/archive-lint-reports