diff options
author | Ben <31181527+benedom@users.noreply.github.com> | 2023-10-19 15:06:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 15:06:02 +0200 |
commit | b11707d26124584855ca0ad9bcb698d6d5e435f0 (patch) | |
tree | e35c7f81ed851fed08c122c063ed84c6c119c1fb /.github | |
parent | bca9886bc5e0d94702d54ed773c86e30d009e62d (diff) |
Update swift.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/swift.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 64ae6ca..b7076e5 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -12,14 +12,12 @@ on: jobs: build: - runs-on: ios-latest + runs-on: macos-latest steps: - uses: actions/checkout@v3 - uses: swift-actions/setup-swift@v1 - name: Get swift version run: swift --version - - name: Build - run: swift build -v - - name: Run tests - run: swift test -v + - name: Build and test + run: xcodebuild test -scheme SwiftyCrop -destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' |