Skip to content

XCoordinator 3.0.0 & Modernization #1

XCoordinator 3.0.0 & Modernization

XCoordinator 3.0.0 & Modernization #1

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Show Xcode version
run: xcodebuild -version
- name: Build and test
run: |
xcodebuild \
-project XCoordinator-Example.xcodeproj \
-scheme XCoordinator-Example \
-testPlan XCoordinator-Example \
-destination 'platform=iOS Simulator,OS=latest,name=iPhone 16' \
CODE_SIGNING_ALLOWED=NO \
test