Skip to content

[TECH] Swift 6 Support #98

[TECH] Swift 6 Support

[TECH] Swift 6 Support #98

Workflow file for this run

name: "[iOS] Unit Tests"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build and Test (iOS)
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Xcode version
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
- name: Setup Swift
uses: SwiftyLab/setup-swift@latest
with:
swift-version: '6.0'
- name: Install xcpretty
run: gem install xcpretty
- name: Test
run: xcodebuild test -scheme FaviconFinder -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' -skipPackagePluginValidation