Refactor upload operations to restrict users from giving any type of … #163
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] | |
jobs: | |
Run_workspace_Tests: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: List available Xcode versions | |
run: ls /Applications | grep Xcode | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_14.2.app && /usr/bin/xcodebuild -version | |
- name: Run unit tests | |
run: xcodebuild test -scheme TermiNetworkTests -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2' | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |