Skip to content

Commit 763efee

Browse files
committed
Merge branch 'dev'
2 parents 6c64c61 + 5cf0c3e commit 763efee

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/swift.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
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-
41
name: Swift
52

63
on:
@@ -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:
@@ -28,4 +26,3 @@ jobs:
2826
run: swift build -v
2927
- name: Run tests
3028
run: swift test -v
31-

Package.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import PackageDescription
44

55
let package = Package(
66
name: "Nodal",
7+
platforms: [.iOS(.v13)],
78
products: [
89
.library(name: "Nodal", targets: ["Nodal"]),
910
],

0 commit comments

Comments
 (0)