Skip to content
Prev Previous commit
Next Next commit
fix: SwiftPM plugins
Test failures reporting on CI
  • Loading branch information
martinpucik committed Jul 31, 2022
commit cd0bff2d22b1f87d9b509b73395f2dc216f765e8
2 changes: 1 addition & 1 deletion Example/Sources/Data Generation/Lorem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import Foundation

// MARK: - Lorem

public class Lorem {
public class Lorems {
// MARK: Public

/// Return a random word.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ test:

framework:
@echo "Building MessageKit Framework."
@xcodebuild build -scheme MessageKit -destination "platform=iOS Simulator,name=iPhone 11" | xcpretty -c
@xset -o pipefail && codebuild build -scheme MessageKit -destination "platform=iOS Simulator,name=iPhone 11" | xcpretty -c

build_example:
@echo "Building & testing MessageKit Example app."
@cd Example && xcodebuild build analyze -scheme ChatExample -destination "platform=iOS Simulator,name=iPhone 11" CODE_SIGNING_REQUIRED=NO | xcpretty -c
@cd Example && set -o pipefail && xcodebuild build analyze -scheme ChatExample -destination "platform=iOS Simulator,name=iPhone 11" CODE_SIGNING_REQUIRED=NO | xcpretty -c

format:
@swift package --allow-writing-to-package-directory format-source-code --file .
Expand Down
2 changes: 1 addition & 1 deletion Sources/Controllers/MessagesViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import UIKit

/// A subclass of `UIViewController` with a `MessagesCollectionView` object
/// that is used to display conversation interfaces.
open class MessagesViewController: UIViewController, UICollectionViewDelegateFlowLayout, UICollectionViewDataSource {
open class MessagesViewControllers: UIViewController, UICollectionViewDelegateFlowLayout, UICollectionViewDataSource {
// MARK: Lifecycle

deinit {
Expand Down