From e7ed3c478f1c750ba6e39a1691e0ce47584bd511 Mon Sep 17 00:00:00 2001 From: Oliver Schrenk Date: Mon, 16 Oct 2023 10:16:43 +0200 Subject: [PATCH] feature: Build via Github actions closes #1 --- .github/workflows/swift.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..8351724 --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,19 @@ +name: Swift + +on: [push] + +jobs: + build: + name: Swift ${{ matrix.swift }} on ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest] + swift: ["5.9"] + runs-on: ${{ matrix.os }} + steps: + - uses: swift-actions/setup-swift@v1.17.0 + with: + swift-version: ${{ matrix.swift }} + - uses: actions/checkout@v4 + - name: Build + run: swift build