Skip to content

Commit

Permalink
fix style and remaining tests
Browse files Browse the repository at this point in the history
  • Loading branch information
morganchen12 committed Jan 28, 2025
1 parent 79b0b98 commit e4d4ea9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 23 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
spm:
name: spm
runs-on: macOS-15
env:
OS: iOS
DEVICE: iPhone 16
DIR: config
SPM: true
LEGACY: false
SWIFT_SUFFIX: ""
SCHEME: ConfigExample
TEST: true
steps:
- name: Checkout
Expand All @@ -45,6 +48,3 @@ jobs:
xcrun simctl boot "iPhone 16"
- name: Build Swift
run: ./scripts/test.sh
env:
OS: iOS
DEVICE: iPhone 16
14 changes: 6 additions & 8 deletions .github/workflows/messaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,29 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
name: cocoapods
spm:
name: spm
runs-on: macOS-15
env:
SPM: false
SPM: true
LEGACY: false
OS: iOS
DEVICE: iPhone 16
TEST: false
DIR: messaging
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup
run: |
cd messaging
gem install bundler
bundle install
gem install xcpretty
bundle exec pod install --repo-update
../scripts/install_prereqs/messaging.sh
- name: Build ObjC
run: ./scripts/test.sh
env:
SWIFT_SUFFIX: ""
SCHEME: MessagingExample
- name: Build Swift
run: ./scripts/test.sh
env:
SWIFT_SUFFIX: Swift
SCHEME: MessagingExampleSwift
14 changes: 6 additions & 8 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,30 +31,28 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
name: cocoapods
spm:
name: spm
runs-on: macOS-15
env:
SPM: false
SPM: true
LEGACY: false
OS: iOS
DEVICE: iPhone 16
TEST: true
DIR: performance
SCHEME: PerformanceExampleSwift
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup
run: |
cd performance
gem install bundler
bundle install
gem install xcpretty
bundle exec pod install --repo-update
../scripts/install_prereqs/performance.sh
- name: Build Swift
run: ./scripts/test.sh
env:
SWIFT_SUFFIX: Swift

spm:
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
runs-on: macOS-15
Expand Down
2 changes: 0 additions & 2 deletions inappmessaging/InAppMessagingExampleSwift/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,4 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
FirebaseApp.configure()
return true
}


}

0 comments on commit e4d4ea9

Please sign in to comment.