We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1eeb97 commit bcb9df4Copy full SHA for bcb9df4
.github/workflows/swift.yaml
@@ -21,11 +21,14 @@ jobs:
21
run: swift build
22
- name: Run tests
23
run: swift test --enable-code-coverage
24
+ - name: Prepare Code Coverage
25
+ run: xcrun llvm-cov export -format="lcov" .build/debug/go-feature-flag-providerPackageTests.xctest/Contents/MacOS/go-feature-flag-providerPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov
26
- name: Upload coverage reports to Codecov
27
uses: codecov/codecov-action@v4
28
with:
29
fail_ci_if_error: true
30
token: ${{ secrets.CODECOV_TOKEN }}
31
+ files: info.lcov
32
env:
33
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
34
lint:
0 commit comments