From 5b3720c267eacb8c63fac88e67d3e0121d77e923 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 2 Nov 2023 08:21:49 -0600 Subject: [PATCH] Create macOS.yml (#1) * Create macOS.yml * Update macOS.yml --- .github/workflows/macOS.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..d49a1e2 --- /dev/null +++ b/.github/workflows/macOS.yml @@ -0,0 +1,21 @@ +# 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: macOS + +on: + push: + branches: ["**"] + +jobs: + build: + runs-on: macos-13 + + steps: + - uses: swift-actions/setup-swift@v1 + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable + - uses: actions/checkout@v3 + - name: Build for release + run: swift build -v -c release