We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e242e6e commit 62734a3Copy full SHA for 62734a3
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
6
pull_request:
7
8
jobs:
9
- build:
+ run:
10
runs-on: ubuntu-latest
11
permissions:
12
contents: read
@@ -26,8 +26,8 @@ jobs:
26
with:
27
cache-read-only: ${{ github.event_name == 'pull_request' }}
28
29
- - name: Detekt + Test
30
- run: ./gradlew clean detekt test
+ - name: Detekt
+ run: ./gradlew clean detekt -x test
31
32
- name: Upload Detekt reports
33
if: always()
@@ -38,6 +38,9 @@ jobs:
38
**/build/reports/detekt/*
39
if-no-files-found: ignore
40
41
+ - name: Test
42
+ run: ./gradlew clean test -x detekt
43
+
44
- name: Upload Test reports
45
46
uses: actions/upload-artifact@v4
0 commit comments