A GitHub Action to check and report the results of Android Lint in Job Summaries.
See also Job Summaries for unit-test workflow results.
- name: Lint
run: ./gradlew lint
- name: Check and report lint results
uses: hidakatsuya/[email protected]
with:
result-path: 'app/build/reports/lint-results-debug.xml'
Alternatively, you can specify a major version, such as hidakatsuya/action-report-android-lint@v1
.
Indicates the relative path from the working directory to Android Lint result XML file. Path patterns by @actions/glob can also be specified.
Indicates whether the action should fail if there is a severity warning issue. Default is true
.
Indicates whether symbolic links are followed in searching XML files. Default is true
.
This action follows the recommendations of GitHub Actions Versioning.
- Make sure CI for main branch has passed
- Create a new release to publish to the GitHub Marketplace
- Make sure that the release workflow has passed