-
Notifications
You must be signed in to change notification settings - Fork 478
71 lines (65 loc) · 1.71 KB
/
phoneauth.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Phone Auth
on:
push:
branches: [ main ]
paths:
- 'FirebaseAuthUI/**'
- 'FirebaseAuthUI.podspec'
- '.github/workflows/phoneauth.yml'
- 'FirebasePhoneAuthUI/**'
- 'test.sh'
- 'FirebasePhoneAuthUI.podspec'
- 'Package.swift'
pull_request:
branches: [ main ]
paths:
- 'FirebaseAuthUI/**'
- 'FirebaseAuthUI.podspec'
- '.github/workflows/phoneauth.yml'
- 'FirebasePhoneAuthUI/**'
- 'test.sh'
- 'FirebasePhoneAuthUI.podspec'
- 'Package.swift'
workflow_dispatch:
jobs:
xcodebuild:
name: xcodebuild
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup
run: |
cd FirebasePhoneAuthUI
gem install bundler
bundle install
gem install xcpretty
bundle exec pod install --repo-update
- name: Build
run: |
./test.sh FirebasePhoneAuthUI
spm:
name: spm
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: List
run: |
xcodebuild -list
- name: Build
run: |
xcodebuild -scheme FirebasePhoneAuthUI -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
# (#1191) Fix and remove --allow-warnings
run: |
bundle exec pod lib lint FirebasePhoneAuthUI.podspec \
--include-podspecs=FirebaseAuthUI.podspec --allow-warnings