Skip to content

Commit 0a76755

Browse files
Update Deployment Workflow with specific Xcode version (#111)
- Installing Xcode version 15.3.0 - Installing all gems with bundler
1 parent 9c413b6 commit 0a76755

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v4
13-
- name: Build
13+
14+
- name: Select Xcode Version
15+
uses: maxim-lobanov/setup-xcode@v1
16+
with:
17+
xcode-version: '15.3.0'
18+
19+
- name: Setup environment
1420
run: |
15-
xcodebuild clean build test -scheme PaystackSDK-Package -sdk iphonesimulator17.4 -destination "OS=17.4,name=iPhone 15 Pro" -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO
16-
21+
bundle install
22+
23+
- name: Build and Run tests
24+
run: |
25+
xcodebuild clean build test -scheme PaystackSDK-Package -sdk iphonesimulator17.4 -destination "OS=17.4,name=iPhone 15 Pro" -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO
26+
1727
- name: setup-cocoapods
1828
uses: maxim-lobanov/setup-cocoapods@v1
1929
with:

0 commit comments

Comments
 (0)