We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1eeb97 commit 4f03444Copy full SHA for 4f03444
.github/workflows/swift.yaml
@@ -21,11 +21,15 @@ jobs:
21
run: swift build
22
- name: Run tests
23
run: swift test --enable-code-coverage
24
+ - run: ls -la .build/debug/
25
+ - name: Prepare Code Coverage
26
+ 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
27
- name: Upload coverage reports to Codecov
28
uses: codecov/codecov-action@v4
29
with:
30
fail_ci_if_error: true
31
token: ${{ secrets.CODECOV_TOKEN }}
32
+ files: info.lcov
33
env:
34
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
35
lint:
0 commit comments