Skip to content

Commit

Permalink
use xcode 14 for Swift 5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
fumito-ito committed Mar 20, 2024
1 parent e4b1c29 commit 7f53075
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ on:
jobs:
build:

runs-on: macos-latest
runs-on: macos-14

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Lint
run: swiftlint
- name: Run tests
run: swift test -v
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import PackageDescription

let package = Package(
name: "AnthropicSwiftSDK",
platforms: [.iOS(.v16)],
platforms: [
.iOS(.v16),
.macOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
Expand Down

0 comments on commit 7f53075

Please sign in to comment.