We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ed514 commit 4da0683Copy full SHA for 4da0683
1 file changed
.github/workflows/ci_cd.yml
@@ -21,6 +21,9 @@ jobs:
21
steps:
22
- name: Checkout
23
uses: actions/checkout@v5
24
+ with:
25
+ # Disabling shallow clone is recommended for improving relevancy of reporting.
26
+ fetch-depth: 0
27
28
- name: Set up JDK 21
29
uses: actions/setup-java@v5
@@ -44,13 +47,6 @@ jobs:
44
47
- name: Test
45
48
run: ./gradlew test
46
49
- - name: Upload Unit Test Results
- if: always()
- uses: actions/upload-artifact@v4
50
- with:
51
- name: test-results
52
- path: '**/build/test-results/**/*.xml'
53
-
54
- name: Run Sonar Analyze
55
run: ./gradlew jacocoTestReport sonar
56
env:
0 commit comments