Migrate to Swift 6, add GitHub Actions CI, remove legacy tooling - #63
Merged
Conversation
- Update swift-tools-version to 6.2 - Add @mainactor to UI-bound extensions (required by Swift 6) - Remove @unchecked Sendable where plain Sendable suffices - Add nonisolated where required for protocol conformance - Add GitHub Actions CI workflow (xcodebuild test on macos-15) - Remove CocoaPods podspec - Add .build/ to .gitignore - Migrate tests from XCTest to Swift Testing - Bump version to 5.0.0 (breaking: Swift 6 + dependency removal)
- Remove carthage.yml, cocoapods.yml, swift.yml workflows - Remove 'master' from ci.yml branch triggers (only 'main')
VenkataKrishnaGarapati
force-pushed
the
swift6-migration
branch
5 times, most recently
from
April 28, 2026 20:46
61140e3 to
88ab225
Compare
VenkataKrishnaGarapati
force-pushed
the
swift6-migration
branch
from
April 28, 2026 20:51
88ab225 to
2fae9ed
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR migrates the project to Swift 6 by updating the tools version to 6.2 and applying only the required concurrency changes. CI has been simplified with a single GitHub Actions workflow using xcodebuild test on macOS 15, with no extra dependencies or hardcoded paths. CocoaPods support has been removed, making the project SPM-only. Tests have been migrated to Swift Testing and all pass. The README has been updated, and the version is bumped to 5.0.0 to reflect these breaking changes.