1 parent 118114e commit 393cf3bCopy full SHA for 393cf3b
1 file changed
.github/workflows/swift.yml
@@ -78,11 +78,11 @@ jobs:
78
echo "Wrote coverage.xml"
79
wc -l coverage.xml || true
80
81
- - name: Upload xcresult bundle
82
- uses: actions/upload-artifact@v4
83
- with:
84
- name: PackageRunnerUITests-xcresult
85
- path: Build/PackageRunnerUITests.xcresult
+ - name: Inspect coverage.xml
+ run: |
+ set -euo pipefail
+ sed -n '1,80p' coverage.xml
+ grep -n "Sources/ModelSettingViewModeling" coverage.xml | sed -n '1,20p' || true
86
87
- name: Upload coverage to Codecov
88
uses: codecov/codecov-action@v5
@@ -91,4 +91,3 @@ jobs:
91
files: coverage.xml
92
fail_ci_if_error: true
93
verbose: true
94
-
0 commit comments