You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- run: swift run BuildTool generate-code-coverage --result-bundle-path CodeCoverage.xcresult
158
+
159
+
# Generate a Markdown report of the code coverage information and add it to the workflow run.
160
+
#
161
+
# This tool is the best option that I could find after a brief look at the options. There are a few things that I wish it could do:
162
+
#
163
+
# - post a message on the pull request, like they do on Kotlin
164
+
# - offer more fine-grained configuration about which data to include in the report (I only care about code coverage, not test results, and I don't care about code coverage of the AblyChatTests target)
165
+
#
166
+
# but it'll do for now (we can always fork or have another look for tooling later).
167
+
- uses: slidoapp/xcresulttool@v3.1.0
168
+
with:
169
+
path: CodeCoverage.xcresult
170
+
# This title will be used for the sidebar item that this job adds to GitHub results page for this workflow
171
+
title: Code coverage results
172
+
# Turning off as much non-code-coverage information as it lets me
0 commit comments