Skip to content

Commit

Permalink
Merge pull request #17 from cybozu/update-xcode
Browse files Browse the repository at this point in the history
Updated Xcode's version to 15.4 from 15.1
  • Loading branch information
Kyome22 authored Jul 6, 2024
2 parents 4708709 + 09e59af commit e065a1b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_docc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
build:
runs-on: macos-14
env:
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Unit Test
runs-on: macos-14
env:
DEVELOPER_DIR: "/Applications/Xcode_15.1.app/Contents/Developer"
DEVELOPER_DIR: "/Applications/Xcode_15.4.app/Contents/Developer"
timeout-minutes: 30

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
xcodebuild test \
-project Examples/Examples.xcodeproj \
-scheme Examples \
-destination "platform=iOS Simulator,name=iPhone 15,OS=17.2" \
-destination "platform=iOS Simulator,name=iPhone 15,OS=17.5" \
-resultBundlePath TestResults/result_bundle
- name: Archive test results
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WebUI is a Swift package that provides WKWebView wrapped by SwiftUI.

## Requirements

- Development with Xcode 15.1+
- Development with Xcode 15.4+
- Written in Swift 5.9
- Compatible with iOS 16.4+
- Compatible with macOS 13.3+
Expand Down Expand Up @@ -39,10 +39,11 @@ WebUI is available through [Swift Package Manager](https://github.com/apple/swif
**CLI**

1. Create `Package.swift` that describes dependencies.

```swift
// swift-tools-version: 5.9
import PackageDescription

let package = Package(
name: "SomeProduct",
products: [
Expand All @@ -61,6 +62,7 @@ WebUI is available through [Swift Package Manager](https://github.com/apple/swif
]
)
```

2. Run the following command in Terminal.
```sh
$ swift package resolve
Expand Down

0 comments on commit e065a1b

Please sign in to comment.