Initiated by moratori for commit 0364f3e0fc4c87d84055c25755626ce4a549f283 #44
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: test | |
run-name: Initiated by ${{ github.actor }} for commit ${{ github.sha }} | |
on: | |
pull_request: | |
types: | |
- synchronize | |
- reopened | |
- opened | |
jobs: | |
test-job: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.4.0' | |
- name: UnitTest | |
run: xcodebuild test -project tw2023_wallet.xcodeproj -scheme tw2023_wallet -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' -only-testing:tw2023_walletTests |