File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ jobs:
31
31
- name : Generate Code Coverage File
32
32
if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
33
33
run : |
34
- xcrun llvm-cov export --instr-profile=.build/x86_64-apple-macosx/ debug/codecov/default.profdata .build/x86_64-apple-macosx/ debug/MethodNotificationCenterPackageTests.xctest/Contents/MacOS/MethodNotificationCenterPackageTests > ./info .lcov
34
+ xcrun llvm-cov export --format=lcov -- instr-profile=" .build/debug/codecov/default.profdata" " .build/debug/MethodNotificationCenterPackageTests.xctest/Contents/MacOS/MethodNotificationCenterPackageTests" > "./codecov .lcov"
35
35
36
36
- name : Upload Code Coverage
37
37
if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
38
- uses : codecov/codecov-action@v1
38
+ uses : codecov/codecov-action@v2
39
39
with :
40
40
token : ${{ secrets.CODECOV_TOKEN }}
41
- file : ./info .lcov
41
+ file : ./codecov .lcov
42
42
verbose : true
You can’t perform that action at this time.
0 commit comments