diff --git a/.github/workflows/lint-checks.yml b/.github/workflows/lint-checks.yml index d35a399..06377ed 100644 --- a/.github/workflows/lint-checks.yml +++ b/.github/workflows/lint-checks.yml @@ -20,10 +20,13 @@ jobs: distribution: 'adopt' java-version: 17 - - run: ./gradlew lint - - - uses: yutailang0119/action-android-lint@v4 + - name: Run Lint + run: ./gradlew lint + continue-on-error: false + + - name: Uploading Lint Report + id: artifact-upload-step + uses: actions/upload-artifact@v4 with: - report-path: build/reports/*.xml # Support glob patterns by https://www.npmjs.com/package/@actions/glob - ignore-warnings: true # Ignore Lint Warnings - continue-on-error: false # If annotations contain error of severity, action-android-lint exit 1. + name: lint-results.apk + path: app/build/reports/lint-results-debug.html