Skip to content

Instantly share code, notes, and snippets.

@root-ansh-ct
Created April 19, 2022 06:34
Show Gist options
  • Save root-ansh-ct/2b9ea818e33379e5667a5695c29a3b35 to your computer and use it in GitHub Desktop.
Save root-ansh-ct/2b9ea818e33379e5667a5695c29a3b35 to your computer and use it in GitHub Desktop.
runs:
using: "composite"
steps:
- name: Check lint
shell: bash
run: ./gradlew :app:lint :base:lint :common:lint :feat:home:lint :feat:profile:lint
- name: Upload Lint results
if: always()
uses: actions/upload-artifact@v2
with:
name: lint_results
path: |
app/build/reports/lint-results.html
base/build/reports/lint-results.html
common/build/reports/lint-results.html
feat/home/build/reports/lint-results.html
feat/profile/build/reports/lint-results.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment