Skip to content

Commit 5fde769

Browse files
committed
Merge remote-tracking branch 'origin/main' into bugfix/create-returns-items-with-temporary-objectids
2 parents 6dcf350 + c2a1f6f commit 5fde769

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
xcode: [13.2.1, 13.4.1, '14.0']
2020
# Swift: 5.5.2, 5.6, 5.7
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Select Xcode ${{ matrix.xcode }}
2424
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
2525
- name: Format lint
@@ -29,6 +29,7 @@ jobs:
2929
- name: Run Tests
3030
run: swift test --enable-code-coverage
3131
- name: Swift Coverage Report
32-
uses: maxep/spm-lcov-action@0.3.1
33-
- name: Code Coverage
34-
run: bash <(curl -s https://codecov.io/bash) -X xcodellvm
32+
run: xcrun llvm-cov export -format="lcov" .build/debug/CoreDataRepositoryPackageTests.xctest/Contents/MacOS/CoreDataRepositoryPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
33+
- uses: codecov/codecov-action@v3
34+
with:
35+
fail_ci_if_error: true # optional (default = false)

0 commit comments

Comments
 (0)