Initiated by moratori for commit a656596db7e6ab0a4a474eac3d31c8f14030ad87 #33
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 |