Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LEARN-7895] Integrar ktlint ao avaliador Android #10

Merged
merged 21 commits into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Detekt Linter Action
# Android Linter Action

A Github action that evaluates projects with [detekt](https://detekt.dev/) and comments the evaluation
A Github action that evaluates projects with [detekt](https://detekt.dev/) and comments the evaluation.

## Development

Expand All @@ -25,7 +25,6 @@ No projeto android adicionar arquivo .github/workflows/main.yml
```yml
on:
pull_request:

types: [opened, synchronize]

jobs:
Expand All @@ -37,15 +36,15 @@ jobs:
- name: checkout
uses: actions/checkout@v3

- name: Fetch Detekt Linter
- name: Fetch Detekt/Ktlint Linter
uses: actions/checkout@v3

with:
repository: betrybe/detekt-linter-action
repository: betrybe/android-linter-action
ref: v1
token: ${{ secrets.GIT_HUB_PAT }}
path: .github/actions/detekt-linter-action
path: .github/actions/android-linter-action

- name: Run Detekt Linter
uses: ./.github/actions/detekt-linter-action
- name: Run Detekt/Ktlint Linter
uses: ./.github/actions/android-linter-action
```
Loading
Loading