Skip to content

Commit 2eaa284

Browse files
committed
Swift 5.9
1 parent 1c7a9ff commit 2eaa284

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.github/workflows/build.yml

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

88
jobs:
9-
xcode_14_3:
9+
xcode_14_3_1:
1010
runs-on: macos-13
1111
env:
12-
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
12+
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3
@@ -40,6 +40,19 @@ jobs:
4040
- name: Test
4141
run: swift test --skip-build
4242

43+
linux_swift_5_9:
44+
runs-on: ubuntu-latest
45+
container: swift:5.9
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@v3
49+
- name: Version
50+
run: swift --version
51+
- name: Build
52+
run: swift build --build-tests
53+
- name: Test
54+
run: swift test --skip-build
55+
4356
linux_swift_5_8:
4457
runs-on: ubuntu-latest
4558
container: swift:5.8

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.8](https://img.shields.io/badge/swift-5.7%20–%205.8-red.svg?style=flat)](https://developer.apple.com/swift)
3+
[![Swift 5.9](https://img.shields.io/badge/swift-5.7%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/twitter-@simonwhitty-blue.svg)](http://twitter.com/simonwhitty)
66

0 commit comments

Comments
 (0)