Skip to content

Update swift.yml

Update swift.yml #2

Workflow file for this run

name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Xcode Setup
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.1'
- name: Build
run: |
cd GitHubActions
xcodebuild build -project TPU_Mac.xcodeprojclean build -sdk iphoneos CODE_SIGNING_ALLOWED=No
- name: Run tests
run: |
cd GitHubActions
xcodebuild test -project TPU_Mac.xcodeproj clean build -sdk iphoneos -destination "platform=iOS Simulator,OS=16.1,name=iPhone 14 Pro Max" CODE_SIGNING_ALLOWED=No