From 56bdb7e52d62d00ac0782c3314c4327c518570bc Mon Sep 17 00:00:00 2001 From: Zach Date: Sat, 2 Nov 2024 13:29:08 -0600 Subject: [PATCH] Create macOS.yml --- .github/workflows/macOS.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/macOS.yml diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml new file mode 100644 index 0000000..a4f2fa8 --- /dev/null +++ b/.github/workflows/macOS.yml @@ -0,0 +1,18 @@ +name: macOS + +on: + push: + branches: ["**"] + +jobs: + build: + runs-on: macos-latest + steps: + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: 16.0 + - uses: actions/checkout@v3 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v