From 926d1ad016412e2f8a0a2e462f798f0ea675705d Mon Sep 17 00:00:00 2001
From: issetgarcia8-maker
<230083122+issetgarcia8-maker@users.noreply.github.com>
Date: Wed, 8 Oct 2025 11:57:15 -0600
Subject: [PATCH 1/2] Update README.md
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index c6b9553a..63307f29 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-#
GitHub Copilot for Xcode
+no#
GitHub Copilot for Xcode
[GitHub Copilot](https://github.com/features/copilot) is an AI pair programmer
tool that helps you write code faster and smarter. Copilot for Xcode is an Xcode extension that provides inline coding suggestions as you type and a chat assistant to answer your coding questions.
@@ -153,4 +153,4 @@ forum](https://github.com/orgs/community/discussions/categories/copilot).
Thank you to @intitni for creating the original project that this is based on.
Attributions can be found under About when running the app or in
-[Credits.rtf](./Copilot%20for%20Xcode/Credits.rtf).
\ No newline at end of file
+[Credits.rtf](./Copilot%20for%20Xcode/Credits.rtf).
From cd0e49692ad1c849d75e0a3b3ee6bb5b453d6f1e Mon Sep 17 00:00:00 2001
From: issetgarcia8-maker
<230083122+issetgarcia8-maker@users.noreply.github.com>
Date: Wed, 8 Oct 2025 12:10:57 -0600
Subject: [PATCH 2/2] Create swift.yml
---
.github/workflows/swift.yml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 .github/workflows/swift.yml
diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml
new file mode 100644
index 00000000..21ae770f
--- /dev/null
+++ b/.github/workflows/swift.yml
@@ -0,0 +1,22 @@
+# This workflow will build a Swift project
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
+
+name: Swift
+
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+
+jobs:
+ build:
+
+ runs-on: macos-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Build
+ run: swift build -v
+ - name: Run tests
+ run: swift test -v