Skip to content

Create GitHub actions workflow to run ci process 499 #2

Create GitHub actions workflow to run ci process 499

Create GitHub actions workflow to run ci process 499 #2

Workflow file for this run

name: Swift Unit Test CI
on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Xcode
uses: sudo xcode-select -switch /Applications/Xcode_15.4.app
- name: Build and Test
run: |
xcodebuild -scheme Scribe -destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' clean build test