File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1- # This workflow will build a Swift project
2- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3-
41name : Swift
52
63on :
@@ -13,13 +10,14 @@ jobs:
1310 build :
1411 strategy :
1512 matrix :
16- os : [macos-14, ubuntu-latest, windows-latest ]
13+ os : [macos-14, ubuntu-latest]
1714
1815 runs-on : ${{ matrix.os }}
1916
2017 steps :
2118 - uses : SwiftyLab/setup-swift@latest
2219 with :
20+ swift-version : ${{ matrix.os == 'windows-latest' && '6.1-dev' || 'latest' }}
2321 development : ${{ matrix.os == 'windows-latest' }}
2422 - uses : actions/checkout@v4
2523 with :
2826 run : swift build -v
2927 - name : Run tests
3028 run : swift test -v
31-
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import PackageDescription
44
55let package = Package (
66 name: " Nodal " ,
7+ platforms: [ . iOS( . v13) ] ,
78 products: [
89 . library( name: " Nodal " , targets: [ " Nodal " ] ) ,
910 ] ,
You can’t perform that action at this time.
0 commit comments