From c76c9be79f9558622df976d1e44b07c93c484526 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 2 Nov 2023 08:07:56 -0600 Subject: [PATCH] Create macOS.yml --- .github/workflows/macOS.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..4d01d0c --- /dev/null +++ b/.github/workflows/macOS.yml @@ -0,0 +1,22 @@ +# 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: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v