Skip to content

Commit

Permalink
Add Xcode 15 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ileitch committed Aug 15, 2023
1 parent e560315 commit a0f32a7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: ["14.3"]
xcode: ["15.0", "14.3.1"]
include:
- xcode: "14.3"
- xcode: "15.0"
macos: macOS-13
- xcode: "14.3.1"
macos: macOS-13
runs-on: ${{ matrix.macos }}
name: macOS
Expand Down Expand Up @@ -53,8 +55,11 @@ jobs:
strategy:
fail-fast: false
matrix:
swift: ["5.8"]
swift: ["5.9", "5.8"]
include:
- swift: "5.9"
container: "swiftlang/swift:nightly-5.9-jammy"
cache-version: 1
- swift: "5.8"
container: "swift:5.8"
cache-version: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,12 @@
PRODUCT_BUNDLE_IDENTIFIER = com.github.peripheryapp.SwiftUIProject;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
};
name = Debug;
};
Expand All @@ -316,8 +320,12 @@
PRODUCT_BUNDLE_IDENTIFIER = com.github.peripheryapp.SwiftUIProject;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
};
name = Release;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -790,8 +790,12 @@
PRODUCT_BUNDLE_IDENTIFIER = com.github.peripheryapp.UIKitProject;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
};
name = Debug;
};
Expand All @@ -813,8 +817,12 @@
PRODUCT_BUNDLE_IDENTIFIER = com.github.peripheryapp.UIKitProject;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = 1;
};
name = Release;
};
Expand Down

0 comments on commit a0f32a7

Please sign in to comment.