Skip to content

Fix GitHub Actions not supporting latest macOS SDK and runner #45

Fix GitHub Actions not supporting latest macOS SDK and runner

Fix GitHub Actions not supporting latest macOS SDK and runner #45

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-13
env:
IOS_SDK_PATH: '/Applications/Xcode_15.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.2.sdk'
steps:
- uses: actions/checkout@v3
- name: Print Xcodes 🙈
uses: ./.github/actions/xcode-select/
- name: Print SDKs 🙈
run: |
echo "Installed SDKs:"
ls /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
- uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
with:
swift-version: "5.8"
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.1.0'
- name: Build iOS
run: xcodebuild -project Demo/Demo.xcodeproj build -sdk iphoneos -scheme 'RichTextKit'
- name: Test iOS
run: |
SDKROOT=$IOS_SDK_PATH swift test -v --target iOS