Skip to content

Commit 892e336

Browse files
authored
Merge pull request #6 from MFB-Technologies-Inc/bugfix/swift-tools-version-does-not-support-minimum-iOS-version-of-16
Bump minimum swift tools version to 5.7
2 parents 9c0a1a3 + 557efb9 commit 892e336

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.github/workflows/ci.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- "*"
10+
workflow_dispatch:
11+
12+
jobs:
13+
macos-test:
14+
runs-on: macos-14
15+
environment: default
16+
strategy:
17+
matrix:
18+
xcode: ["16.0"]
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Select Xcode ${{ matrix.xcode }}
22+
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
23+
- name: Build package
24+
run: xcodebuild -scheme blackberry-dynamics-ios-sdk-Package -destination generic/platform=iOS

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.7
22

33
import PackageDescription
44

0 commit comments

Comments
 (0)