Prep to publish 14.2.6 with fix for #1207 (#1213) #519
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OAuth | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'FirebaseAuthUI/**' | |
- 'FirebaseAuthUI.podspec' | |
- '.github/workflows/oauth.yml' | |
- 'FirebaseOAuthUI/**' | |
- 'test.sh' | |
- 'FirebaseOAuthUI.podspec' | |
- 'Package.swift' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'FirebaseAuthUI/**' | |
- 'FirebaseAuthUI.podspec' | |
- '.github/workflows/oauth.yml' | |
- 'FirebaseOAuthUI/**' | |
- 'test.sh' | |
- 'FirebaseOAuthUI.podspec' | |
- 'Package.swift' | |
workflow_dispatch: | |
jobs: | |
xcodebuild: | |
name: xcodebuild | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Setup | |
run: | | |
cd FirebaseOAuthUI | |
gem install bundler | |
bundle install | |
gem install xcpretty | |
bundle exec pod install --repo-update | |
- name: Build | |
run: | | |
./test.sh FirebaseOAuthUI | |
spm: | |
name: spm | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: List | |
run: | | |
xcodebuild -list | |
- name: Build | |
run: | | |
xcodebuild -scheme FirebaseOAuthUI -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=latest,name=iPhone 15 Pro' | |
pod: | |
name: pod lib lint | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Setup | |
run: gem install bundler; bundle install | |
- name: Build | |
run: | | |
bundle exec pod lib lint FirebaseOAuthUI.podspec \ | |
--include-podspecs=FirebaseAuthUI.podspec |