Skip to content

Commit 763b359

Browse files
authored
Merge pull request #70 from swhitty/swift-5.9
Add Github Action Build for Swift 5.9
2 parents 4f4db93 + 00c21dd commit 763b359

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
@@ -120,3 +120,16 @@ jobs:
120120
run: swift build --build-tests
121121
- name: Test
122122
run: swift test --skip-build
123+
124+
linux_swift_5_9:
125+
runs-on: ubuntu-latest
126+
container: swift:5.9
127+
steps:
128+
- name: Checkout
129+
uses: actions/checkout@v3
130+
- name: Version
131+
run: swift --version
132+
- name: Build
133+
run: swift build --build-tests
134+
- name: Test
135+
run: swift test --skip-build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build](https://github.com/swhitty/FlyingFox/actions/workflows/build.yml/badge.svg)](https://github.com/swhitty/FlyingFox/actions/workflows/build.yml)
22
[![Codecov](https://codecov.io/gh/swhitty/FlyingFox/graphs/badge.svg)](https://codecov.io/gh/swhitty/FlyingFox)
33
[![Platforms](https://img.shields.io/badge/platforms-iOS%20|%20Mac%20|%20tvOS%20|%20Linux%20|%20Windows-lightgray.svg)](https://github.com/swhitty/FlyingFox/blob/main/Package.swift)
4-
[![Swift 5.8](https://img.shields.io/badge/swift-5.5%20–%205.8-red.svg?style=flat)](https://developer.apple.com/swift)
4+
[![Swift 5.9](https://img.shields.io/badge/swift-5.5%20–%205.9-red.svg?style=flat)](https://developer.apple.com/swift)
55
[![License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT)
66
[![Twitter](https://img.shields.io/badge/[email protected])](http://twitter.com/simonwhitty)
77

0 commit comments

Comments
 (0)