File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66jobs :
77 smoke-test :
8- runs-on : macos-latest
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ os : [macos-14, macos-15, macos-26]
913 steps :
10- - name : Checkout Repo
11- uses : actions/checkout@v4
14+ - name : Checkout Repo
15+ uses : actions/checkout@v4
1216
13- - name : Build
14- run : swift build -v
17+ - name : Build
18+ run : swift build -v
1519
16- - name : Run Smoke Test
17- run : swift run -v DictionaryKitExample
20+ - name : Run Smoke Test
21+ run : swift run -v DictionaryKitExample
Original file line number Diff line number Diff line change 1- // swift-tools-version: 6.1
1+ // swift-tools-version: 5.4
22
33import PackageDescription
44
55let package = Package (
66 name: " DictionaryKit " ,
7+ platforms: [
8+ . macOS( . v10_13)
9+ ] ,
710 products: [
811 . library(
912 name: " DictionaryKit " ,
@@ -12,7 +15,7 @@ let package = Package(
1215 ] ,
1316 targets: [
1417 . target(
15- name: " DictionaryKit " ,
18+ name: " DictionaryKit "
1619 ) ,
1720 . executableTarget(
1821 name: " DictionaryKitExample " ,
You can’t perform that action at this time.
0 commit comments