From 43c2a2c1a2cb24ae4aa7f9eefd084a670d7dfa55 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Thu, 30 Apr 2026 15:04:04 -0600 Subject: [PATCH 1/3] Create Swift CI workflow in GitHub Actions Add GitHub Actions workflow for Swift builds and tests --- .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 0000000..fd0c40a --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,22 @@ +name: Swift +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +permissions: + contents: read +jobs: + build: + runs-on: macos-latest + steps: + - name: Set Xcode version + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable + - name: Checkout + uses: actions/checkout@v6 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v From d6a8b765bc88a2ba836b363d6027958801995191 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Thu, 30 Apr 2026 15:04:54 -0600 Subject: [PATCH 2/3] Add Dependabot configuration for GitHub Actions --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 511c1858c2dc5f39d333d5ef4935bb165a50195f Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Thu, 30 Apr 2026 15:13:21 -0600 Subject: [PATCH 3/3] Update .github/workflows/swift.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/swift.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index fd0c40a..e6470b5 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -10,13 +10,13 @@ jobs: build: runs-on: macos-latest steps: - - name: Set Xcode version - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: latest-stable - - name: Checkout - uses: actions/checkout@v6 - - name: Build - run: swift build -v - - name: Run tests - run: swift test -v + - name: Set Xcode version + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable + - name: Checkout + uses: actions/checkout@v6 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v