Use 'swift' instead of 'xcodebuild' for CI. Enable code coverage. #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
spm-15: | |
name: Swift Build Xcode 15 | |
runs-on: macos-13 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Select Xcode Version | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer | |
- name: Build and Test Framework | |
run: xcrun swift test -c release --enable-code-coverage -Xswiftc -enable-testing | |
- name: Prepare Coverage Reports | |
run: ./Scripts/prepare-coverage-reports.sh | |
- name: Upload Coverage Reports | |
if: success() | |
uses: codecov/codecov-action@v3 |