Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: [ "main" ]

jobs:
xcode:
xcode-16-3:
runs-on: macos-15
env:
DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer
Expand All @@ -20,5 +20,31 @@ jobs:
run: swift --version
- name: Build
run: swift build -v
- name: Test
run: swift test -v
# - name: Test
# run: swift test -v

xcode-15-4:
runs-on: macos-14
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Version
run: swift --version
- name: Build
run: swift build -v
# - name: Test
# run: swift test -v

xcode-15-0:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Version
run: swift --version
- name: Build
run: swift build -v
# - name: Test
# run: swift test -v
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.0
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -23,9 +23,9 @@ let package = Package(
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "SwiftGlass"),
.testTarget(
name: "SwiftGlassTests",
dependencies: ["SwiftGlass"]
),
// .testTarget(
// name: "SwiftGlassTests",
// dependencies: ["SwiftGlass"]
// ),
]
)
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,18 @@

## Tested Platforms and Environment

iOS 15.0+, macOS 14.0+, watchOS 10.0+, tvOS 15.0+, and visionOS 1.0+
| Platform | Version |
| -- | -- |
| iOS | 15.0+ |
| macOS | 14.0+ |
| watchOS | 10.0+ |
| tvOS | 15.0+ |
| visionOS | 1.0+ |

Xcode 16.3 (Not Minimum Required)
| Xcode | | |
| -- | -- | -- |
| Latest | Minimum | SVT |
| 16.3 | 15.0 | 5.9 |

![image](https://github.com/user-attachments/assets/99794cda-e879-4194-85fb-f6350ddf9db8)

Expand Down