We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9c0a1a3 + 557efb9 commit 892e336Copy full SHA for 892e336
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
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,4 +1,4 @@
-// swift-tools-version:5.5
+// swift-tools-version:5.7
import PackageDescription
0 commit comments