Skip to content

Commit 4af2744

Browse files
committed
Remove Swift 5.7 Support
1 parent 24b100f commit 4af2744

File tree

3 files changed

+8
-21
lines changed

3 files changed

+8
-21
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
xcode_14_3_1:
9+
xcode_15_0_1:
1010
runs-on: macos-13
1111
env:
12-
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
12+
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3
@@ -26,10 +26,10 @@ jobs:
2626
with:
2727
files: ./coverage_report.lcov
2828

29-
xcode_15:
29+
xcode_14_3_1:
3030
runs-on: macos-13
3131
env:
32-
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
32+
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
3333
steps:
3434
- name: Checkout
3535
uses: actions/checkout@v3
@@ -40,9 +40,9 @@ jobs:
4040
- name: Test
4141
run: swift test --skip-build
4242

43-
linux_swift_5_9:
43+
linux_swift_5_9_2:
4444
runs-on: ubuntu-latest
45-
container: swift:5.9
45+
container: swift:5.9.2
4646
steps:
4747
- name: Checkout
4848
uses: actions/checkout@v3
@@ -65,16 +65,3 @@ jobs:
6565
run: swift build --build-tests
6666
- name: Test
6767
run: swift test --skip-build
68-
69-
linux_swift_5_7:
70-
runs-on: ubuntu-latest
71-
container: swift:5.7
72-
steps:
73-
- name: Checkout
74-
uses: actions/checkout@v3
75-
- name: Version
76-
run: swift --version
77-
- name: Build
78-
run: swift build --build-tests
79-
- name: Test
80-
run: swift test --skip-build

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.7
1+
// swift-tools-version:5.8
22
import PackageDescription
33

44
let package = Package(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build](https://github.com/swhitty/KeyValueCoder/actions/workflows/build.yml/badge.svg)](https://github.com/swhitty/KeyValueCoder/actions/workflows/build.yml)
22
[![CodeCov](https://codecov.io/gh/swhitty/KeyValueCoder/branch/main/graphs/badge.svg)](https://codecov.io/gh/swhitty/KeyValueCoder/branch/main)
3-
[![Swift 5.9](https://img.shields.io/badge/swift-5.7%20–%205.9-red.svg?style=flat)](https://developer.apple.com/swift)
3+
[![Swift 5.9](https://img.shields.io/badge/swift-5.8%20–%205.9-red.svg?style=flat)](https://developer.apple.com/swift)
44
[![License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT)
55
[![Twitter](https://img.shields.io/badge/[email protected])](http://twitter.com/simonwhitty)
66

0 commit comments

Comments
 (0)