Swift package

* Added the Keychain package
* Added a Makefile to easily build the package
* Added a Gitea pull request action
* Updated the README with additional information

Co-authored-by: Bram Kolkman <bramkolkman@thinkerium.com>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-02-23 09:11:09 +00:00
parent f1abe0f69e
commit b57041f0f7
6 changed files with 118 additions and 1 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: build resolve clean
build:
@echo "Building Swift package 'Keychain'"
@swift build --package-path Keychain --scratch-path .build
resolve:
@echo "Resolving Swift package dependencies..."
@swift package resolve --package-path Keychain --scratch-path .build
clean:
@echo "Cleaning build artifacts..."
@rm -rf .build Keychain/.swiftpm