From 5bffdd23ec63c9317ba63ccff3ec11a5a555d253 Mon Sep 17 00:00:00 2001 From: broken-circle <252359939+broken-circle@users.noreply.github.com> Date: Mon, 20 Jul 2026 13:23:54 -0700 Subject: [PATCH] Add test workflow --- .github/workflows/test.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..a46c1af --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +name: Tests + +on: + pull_request: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + test: + runs-on: macos-26 + steps: + - uses: actions/checkout@v7 + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: '26.6' + - name: Record toolchain + run: | + swift --version + xcrun clang --version + xcodebuild -version + - name: Run tests + run: swift test