Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

actions: Add code coverage #5

Merged
merged 7 commits into from
Jun 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update ios.yml
josetorronteras committed Jun 4, 2024
commit e8b94cabeb9cf70369b3207e87928c0cfebe57fb
6 changes: 3 additions & 3 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -20,8 +20,8 @@ jobs:
fail-fast: true
matrix:
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#installed-simulators
xcode_version: [ "15.0.1", "15.4" ]
os_version: [ "17.0.1", "17.5" ]
xcode_version: [ "15.4" ]
os_version: [ "17.0.1"]
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -45,6 +45,6 @@ jobs:
test
- name: Lcov file generation
run: |
xcrun llvm-cov export -format="lcov" -instr-profile "DerivedData/Build/Intermediates.noindex/CryptoWidgetKitApp.build/Debug-iphonesimulator/CryptoWidgetKitApp.build/Objects-normal/x86_64/CryptoWidgetKitAppTests.gcda" -output-file "lcov.info"
xcrun llvm-cov export -format="lcov" .build/debug/EmailValidationPackageTests.xctest/Contents/MacOS/EmailValidationPackageTests -instr-profile .build/debug/codecov/default.profdata -ignore-filename-regex=".build|Tests" > info.lcov
- name: Coveralls
uses: coverallsapp/github-action@v2