Skip to content

Commit

Permalink
run detekt on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Aug 29, 2024
1 parent bbc7990 commit f7a0c4f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
name: Test

steps:
- name: Clone repository
Expand All @@ -19,12 +20,17 @@ jobs:
java-version: 11
cache: gradle

- name: Test
- name: Run detekt
run: ./gradlew detekt --continue

- name: Run tests
if: success() || failure()
run: ./gradlew test


validate-gradle-wrapper:
runs-on: ubuntu-latest
name: Validate Gradle Wrapper

steps:
- name: Clone repository
Expand Down

0 comments on commit f7a0c4f

Please sign in to comment.