Initiated by moratori for commit 13c14ec3d35e58f9d3423af16e10783e9e7e4a58 #40
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 |