Skip to content

Commit 4da0683

Browse files
[action] clean up
1 parent 37ed514 commit 4da0683

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/ci_cd.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v5
24+
with:
25+
# Disabling shallow clone is recommended for improving relevancy of reporting.
26+
fetch-depth: 0
2427

2528
- name: Set up JDK 21
2629
uses: actions/setup-java@v5
@@ -44,13 +47,6 @@ jobs:
4447
- name: Test
4548
run: ./gradlew test
4649

47-
- name: Upload Unit Test Results
48-
if: always()
49-
uses: actions/upload-artifact@v4
50-
with:
51-
name: test-results
52-
path: '**/build/test-results/**/*.xml'
53-
5450
- name: Run Sonar Analyze
5551
run: ./gradlew jacocoTestReport sonar
5652
env:

0 commit comments

Comments
 (0)