Skip to content

v3.0.2

v3.0.2 #19

Workflow file for this run

name: ios
env:
CI: true
on:
push:
branches: [ master ]
pull_request:
branches: [ develop, master ]
jobs:
build-test:
if: github.event.pull_request.draft == false
runs-on: [ self-hosted, macOS, ARM64 ]
strategy:
matrix:
ios: [ 17.4 ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Prepare Environment
uses: ./.github/actions/prepare-env
with:
cocoapods: 'true'
- name: Run tests
working-directory: ios
run: |
xcodebuild -quiet -workspace Xaman.xcworkspace -scheme Xaman -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=${{ matrix.ios }}' -resultBundlePath TestResults test
- name: Test Summary
uses: kishikawakatsumi/xcresulttool@v1
with:
path: ios/TestResults.xcresult
if: success() || failure()