Skip to content

Commit

Permalink
Update min Swift version to 5.6 and make platform versions consistent (
Browse files Browse the repository at this point in the history
…#103)

Update minimum Swift version to 5.6 and make platform versions consistent.
  • Loading branch information
gwynne authored Apr 14, 2023
1 parent 76da703 commit f66ddde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request: { branches: ['*'] }
push: { branches: [ main ] }
Expand All @@ -20,7 +23,7 @@ jobs:
dependents-check:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
container: swift:5.7-jammy
container: swift:5.8-jammy
steps:
- name: Check out package
uses: actions/checkout@v3
Expand Down
6 changes: 4 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
// swift-tools-version:5.5
// swift-tools-version:5.6
import PackageDescription

let package = Package(
name: "sqlite-kit",
platforms: [
.macOS(.v10_15),
.iOS(.v13)
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13),
],
products: [
.library(name: "SQLiteKit", targets: ["SQLiteKit"]),
Expand Down

0 comments on commit f66ddde

Please sign in to comment.