Skip to content

Initial implementation #8

Initial implementation

Initial implementation #8

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: swift-actions/[email protected] # GH actions currently only have Swift 5.10.0
with:
swift-version: "6.0.0"
- name: format
run: swiftformat . --lint --reporter github-actions-log
- name: build
run: |
xcodebuild \
-scheme Ultravox \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=17.2' \
build || exit 1