Skip to content

Add CI.yml

Add CI.yml #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: xcodebuild -project 'Numero.xcodeproj' -scheme 'Numero' -destination 'platform=iOS Simulator,name=iPhone 15 Pro' test
- name: Build App
run: xcodebuild -project 'Numero.xcodeproj' -scheme 'Numero' -destination 'generic/platform=iOS' -configuration build CODE_SIGNING_ALLOWED=NO