Skip to content

Commit 3c4f18c

Browse files
committed
🧪 Allowing project warnings on linter
1 parent f9b3eb1 commit 3c4f18c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
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]}
2424
2525
- name: CocoaPods lint
26-
run: pod lib lint
26+
run: pod lib lint --allow-warnings
2727

2828
- name: Upload coverage report to codecov.io
2929
run: bash <(curl -s https://codecov.io/bash) -X gcov -J 'IterableSDK' -J 'IterableAppExtensions'

swift-sdk/Internal/IterableCoreDataPersistence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum PersistenceConst {
2121
}
2222
}
2323

24-
class PersistentContainer: NSPersistentContainer, @unchecked Sendable {
24+
class PersistentContainer: NSPersistentContainer {
2525
static var shared: PersistentContainer?
2626

2727
static func initialize() -> PersistentContainer? {

swift-sdk/Internal/IterableHtmlMessageViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
import UIKit
6-
@preconcurrency import WebKit
6+
import WebKit
77

88
enum IterableMessageLocation: Int {
99
case full

0 commit comments

Comments
 (0)