File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -50,17 +50,13 @@ jobs:
50
50
chown -R 1000:1000 `pwd`
51
51
su `id -un 1000` -c "./gradlew check --parallel && ./gradlew jacocoTestReport && cp -v build/reports/jacoco/test/jacocoTestReport.xml ./jacocoTestReport.xml"
52
52
53
- - uses : actions/upload-artifact@v4
54
- if : ${{ matrix.os }} == "ubuntu-latest"
55
- with :
56
- name : coverage-report-${{ matrix.os }}-${{ matrix.java }}
57
- path : ./jacocoTestReport.xml
58
-
59
53
- name : Upload Coverage Report
54
+ if : contains(matrix.os, 'ubuntu') && contains(matrix.java, '21')
60
55
uses : codecov/codecov-action@v5
56
+ env :
57
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
61
58
with :
62
- token : ${{ secrets.CODECOV_TOKEN }}
63
- files : ./jacocoTestReport.xml
59
+ file : ./build/reports/jacoco/test/jacocoTestReport.xml
64
60
65
61
Check-neural-search-windows :
66
62
strategy :
You can’t perform that action at this time.
0 commit comments