Skip to content

Commit f66ddde

Browse files
authored
Update min Swift version to 5.6 and make platform versions consistent (#103)
Update minimum Swift version to 5.6 and make platform versions consistent.
1 parent 76da703 commit f66ddde

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: test
2+
concurrency:
3+
group: ${{ github.workflow }}-${{ github.ref }}
4+
cancel-in-progress: true
25
on:
36
pull_request: { branches: ['*'] }
47
push: { branches: [ main ] }
@@ -20,7 +23,7 @@ jobs:
2023
dependents-check:
2124
if: github.event_name == 'pull_request'
2225
runs-on: ubuntu-latest
23-
container: swift:5.7-jammy
26+
container: swift:5.8-jammy
2427
steps:
2528
- name: Check out package
2629
uses: actions/checkout@v3

Package.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.6
22
import PackageDescription
33

44
let package = Package(
55
name: "sqlite-kit",
66
platforms: [
77
.macOS(.v10_15),
8-
.iOS(.v13)
8+
.iOS(.v13),
9+
.watchOS(.v6),
10+
.tvOS(.v13),
911
],
1012
products: [
1113
.library(name: "SQLiteKit", targets: ["SQLiteKit"]),

0 commit comments

Comments
 (0)