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