Skip to content

Commit

Permalink
Updated to Xcode 15
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryRudolph committed Nov 18, 2023
1 parent 7276a37 commit d738b5e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:

jobs:
build:
runs-on: macos-latest
runs-on: macos-13

steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v3
- name: Xcode Select
run: sudo xcode-select -switch /Applications/Xcode_14.2.app
run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app
- name: Xcode Versions
run: xcodebuild -version -sdk
- name: Build and Test
run: xcodebuild -scheme LolayFundamenta -sdk iphonesimulator16.2 -destination "platform=iOS Simulator,OS=16.2,name=iPhone 14" clean build test | xcpretty
run: xcodebuild -scheme LolayFundamenta -sdk iphonesimulator17.0 -destination "platform=iOS Simulator,OS=17.0.1,name=iPhone 15" clean build test | xcpretty
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Build generated
build/
DerivedData/
.swiftpm

## Various settings
*.pbxuser
Expand Down
11 changes: 6 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.7
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
//
// Copyright © 2023 Lolay, Inc.
Expand All @@ -21,10 +21,11 @@ import PackageDescription
let package = Package(
name: "LolayFundamenta",
platforms: [
.macOS(.v13),
.iOS(.v16),
.watchOS(.v9),
.tvOS(.v16)
.iOS(.v17),
.watchOS(.v10),
.tvOS(.v17),
.visionOS(.v1),
.macCatalyst(.v17)
],
products: [
.library(
Expand Down

0 comments on commit d738b5e

Please sign in to comment.