| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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-13]
- 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 15"'
- 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
|