We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af52fc commit 50e63a7Copy full SHA for 50e63a7
1 file changed
.github/workflows/coverage.yml
@@ -16,7 +16,9 @@ jobs:
16
steps:
17
- name: Checkout
18
uses: actions/checkout@v3
19
-
+ with:
20
+ # required for correct codecov upload
21
+ fetch-depth: 0
22
- name: Set up JDK 11
23
uses: actions/setup-java@v3
24
with:
@@ -28,6 +30,13 @@ jobs:
28
30
- name: Build and run tests
29
31
run: |
32
gradle clean build --no-daemon --info
33
+ - name: Upload gradle reports
34
+ if: ${{ always() }}
35
+ uses: actions/upload-artifact@v3
36
37
+ name: gradle-reports
38
+ path: '**/build/reports/'
39
+ retention-days: 1
40
- name: Upload coverage reports to Codecov
41
uses: codecov/codecov-action@v3
42
env:
0 commit comments