Skip to content

Commit a2897d5

Browse files
committedMay 21, 2023
Run on macos-13
1 parent 481b531 commit a2897d5

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed
 

‎.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Build and test
22
on: [push, pull_request]
33
env:
44
IOS_SIMULATOR: iPhone 12
5-
IOS_VERSION: "16.0"
5+
IOS_VERSION: "16.4"
66
jobs:
77
build:
8-
runs-on: macos-12
8+
runs-on: macos-13
99
steps:
1010
- uses: actions/checkout@v2
1111
- name: Install

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ DerivedData
2525
# Swift Package Manager
2626
.build
2727
Packages/
28+
.swiftpm/

‎Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.7
22
import PackageDescription
33

44
let package = Package(

‎Tests/SPM/Package.swift

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.7
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -18,9 +18,6 @@ let package = Package(
1818
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1")
1919
],
2020
targets: [
21-
.target(
22-
name: "test",
23-
dependencies: [.product(name: "SQLite", package: "SQLite.swift")]
24-
)
21+
.executableTarget(name: "test", dependencies: [.product(name: "SQLite", package: "SQLite.swift")])
2522
]
2623
)

0 commit comments

Comments
 (0)
Please sign in to comment.