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:
3131 - name : Generate Code Coverage File
3232 if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
3333 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"
3535
3636 - name : Upload Code Coverage
3737 if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
38- uses : codecov/codecov-action@v1
38+ uses : codecov/codecov-action@v2
3939 with :
4040 token : ${{ secrets.CODECOV_TOKEN }}
41- file : ./info .lcov
41+ file : ./codecov .lcov
4242 verbose : true
You can’t perform that action at this time.
0 commit comments