hellbender-wallet/.github/workflows/Xcode-unit-tests.yml
2026-04-01 10:20:06 -04:00

21 lines
548 B
YAML

name: Xcode - Unit Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Run unit tests using xcodebuild
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Run Unit Tests
run: |
xcodebuild test -project hellbender.xcodeproj -scheme hellbender -destination 'platform=iOS Simulator,name=iPhone 17 Pro' -only-testing:hellbenderTests -parallel-testing-enabled NO CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]}