aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/swift.yml
diff options
context:
space:
mode:
authorBen <31181527+benedom@users.noreply.github.com>2023-10-19 16:20:09 +0200
committerGitHub <noreply@github.com>2023-10-19 16:20:09 +0200
commiteae656a5decbf84169550fd336eea942af3abe89 (patch)
tree839afe248ec7ee8a1a6bc18b4a55e939e27f70e7 /.github/workflows/swift.yml
parentce10d0756a8763f111f36390cde5a63d5c99711f (diff)
Update and rename swift.yml to build-swift.yml
Diffstat (limited to '.github/workflows/swift.yml')
-rw-r--r--.github/workflows/swift.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml
deleted file mode 100644
index d3825be..0000000
--- a/.github/workflows/swift.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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: Swift
-
-on:
- push:
- branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
-
-jobs:
- build:
- strategy:
- matrix:
- platform:
- - iOS
- xcode:
- - ^15
-
- runs-on: macos-13
-
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Get swift version
- uses: swift-actions/setup-swift@v1
- - name: Print Swift version
- run: swift --version
- - name: Build & Test
- uses: mxcl/xcodebuild@v1
- with:
- xcode: ${{ matrix.xcode }}
- platform: ${{ matrix.platform }}