Skip to content

Commit

Permalink
Fix GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kirich1409 committed Mar 19, 2024
1 parent 14fe2ac commit a542284
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@ name: Code quality check
run-name: Check code quality with linter
on: [push]
jobs:
Detekt:
Linters:
runs-on: ubuntu-latest
steps:
- run: ./gradlew detekt
- name: set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21

- uses: gradle/gradle-build-action@v3
with:
cache-disabled: true

- name: Detekt
shell: bash
run: ./gradlew detekt

0 comments on commit a542284

Please sign in to comment.