File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: pull_request
4
4
5
5
jobs :
6
6
run-tests-job :
7
- runs-on : macos-12
7
+ runs-on : macos-latest
8
8
9
9
steps :
10
10
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -13,12 +13,17 @@ jobs:
13
13
with :
14
14
xcode-version : latest-stable
15
15
16
+ - name : Setup Ruby and xcpretty
17
+ run : |
18
+ gem install erb
19
+ gem install xcpretty
20
+
16
21
- name : Build and test
17
22
run : |
18
- xcodebuild test -project swift-sdk.xcodeproj -scheme swift-sdk -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 13 Pro Max ' -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}
23
+ xcodebuild test -project swift-sdk.xcodeproj -scheme swift-sdk -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16 Pro' -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}
19
24
20
25
- name : CocoaPods lint
21
- run : pod lib lint
26
+ run : pod lib lint --allow-warnings
22
27
23
28
- name : Upload coverage report to codecov.io
24
29
run : bash <(curl -s https://codecov.io/bash) -X gcov -J 'IterableSDK' -J 'IterableAppExtensions'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: pull_request
4
4
5
5
jobs :
6
6
run-e2e-job :
7
- runs-on : macos-12
7
+ runs-on : macos-latest
8
8
9
9
steps :
10
10
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
You can’t perform that action at this time.
0 commit comments