diff options
author | Ben <31181527+benedom@users.noreply.github.com> | 2023-10-19 15:33:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 15:33:00 +0200 |
commit | 2e2caa37d1df2735272bfe6af2f3b7e0a4535532 (patch) | |
tree | 9c621f4d66d7934f54ca5ddca711a3eefdc2b4ff /.github/workflows/swift.yml | |
parent | 23f7d40d699b600fe17fc88cb15830e3b1ebfb2b (diff) |
Update swift.yml
Diffstat (limited to '.github/workflows/swift.yml')
-rw-r--r-- | .github/workflows/swift.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index fdff5f4..d3825be 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -21,11 +21,14 @@ jobs: runs-on: macos-13 steps: - - uses: actions/checkout@v3 - - uses: swift-actions/setup-swift@v1 + - name: Checkout + uses: actions/checkout@v3 - name: Get swift version + uses: swift-actions/setup-swift@v1 + - name: Print Swift version run: swift --version - - uses: mxcl/xcodebuild@v1 + - name: Build & Test + uses: mxcl/xcodebuild@v1 with: xcode: ${{ matrix.xcode }} platform: ${{ matrix.platform }} |