From c8e96a80f947f67a7660995cb888080a9e2f173f Mon Sep 17 00:00:00 2001 From: Matt Kiazyk Date: Mon, 25 May 2026 12:21:30 -0500 Subject: [PATCH 1/2] add test actions --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..bb7c634 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Tests + +on: + push: + branches: + - "**" + pull_request: + branches: + - main + +jobs: + test: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run tests + run: swift test From 8b62c969f9d6819f8cd6e23f012257546ccf8472 Mon Sep 17 00:00:00 2001 From: Matt Kiazyk Date: Mon, 25 May 2026 12:22:53 -0500 Subject: [PATCH 2/2] push to main only --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb7c634..d1a5d21 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ name: Tests on: push: branches: - - "**" + - "main" pull_request: branches: - main