Skip to content

Commit

Permalink
Create lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
answad authored Jun 15, 2024
1 parent c68988c commit fb47b60
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Lint and Static Analysis

on:
pull_request:
branches: []

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11' # 사용하는 Java 버전에 맞추세요.

- name: Run Detekt Linter
run: ./gradlew detektCheck

- name: Run Android Lint
run: ./gradlew lintDebug

0 comments on commit fb47b60

Please sign in to comment.