Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
check-square

GitHub Action

GitHub Action for Android Lint

v1.0.0

GitHub Action for Android Lint

check-square

GitHub Action for Android Lint

A tool to enforce Android style and conventions

Installation

Copy and paste the following snippet into your .yml file.

              

- name: GitHub Action for Android Lint

uses: yutailang0119/action-android-lint@v1.0.0

Learn more about this action in yutailang0119/action-android-lint

Choose a version

action-android-lint status

GitHub Actions for Android Lint

This Action generates annotations from Android Lint Report XML.

Usage

An example workflow(.github/workflows/android-lint.yml) to executing Android Lint follows:

name: AndroidLint

on:
  pull_request:
    paths:
      - .github/workflows/android-lint.yml
      - '*/src/**'
      - '**.kts'
      - gradle/**
      - '**.gradle'
      - gradle.properties
      - gradlew*

jobs:
  android_lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: set up JDK 1.8
        uses: actions/setup-java@v1
        with:
          java-version: 1.8
      - run: ./gradlew lint
      - uses: yutailang0119/action-android-lint@v1.0.0
        with:
          xml_path: build/reports/lint-results.xml

Author

Yutaro Muta

References

License

action-android-lint is available under the MIT license. See the LICENSE file for more info.