Update iPhone simulator from 14 to 15. #685
Workflow file for this run
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: unit_tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pod-lib-lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-12] | |
podspec: [GoogleSignIn.podspec, GoogleSignInSwiftSupport.podspec] | |
flag: [ | |
"", | |
"--use-static-frameworks" | |
] | |
include: | |
- podspec: GoogleSignInSwiftSupport.podspec | |
includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Bundler | |
run: bundle update --bundler | |
- name: Install Ruby gems with Bundler | |
run: bundle install | |
- name: Lint podspec using local source | |
# See #400 (https://github.com/google/GoogleSignIn-iOS/issues/400) | |
run: | | |
pod lib lint ${{ matrix.podspec }} --verbose \ | |
${{ matrix.includePodspecFlag }} ${{ matrix.flag }} | |
spm-build-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest] | |
sdk: ['macosx', 'iphonesimulator'] | |
include: | |
- sdk: 'macosx' | |
destination: '"platform=OS X,arch=x86_64"' | |
- sdk: 'iphonesimulator' | |
destination: '"platform=iOS Simulator,name=iPhone 14"' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build unit test target | |
run: | | |
xcodebuild \ | |
-scheme GoogleSignIn-Package \ | |
-sdk ${{ matrix.sdk }} \ | |
-destination ${{ matrix.destination }} \ | |
build-for-testing | |
- name: Run unit test target | |
run: | | |
xcodebuild \ | |
-scheme GoogleSignIn-Package \ | |
-sdk ${{ matrix.sdk }} \ | |
-destination ${{ matrix.destination }} \ | |
test-without-building | |