| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- name: tests
- on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
- workflow_dispatch:
- jobs:
-
- pod-lib-lint:
- runs-on: ${{ matrix.os }}
- strategy:
- fail-fast: false
- matrix:
- os: [macos-11, macos-12]
- podspec: [GoogleSignIn.podspec, GoogleSignInSwiftSupport.podspec]
- flag: [
- "",
- "--use-libraries",
- "--use-static-frameworks"
- ]
- include:
- - podspec: GoogleSignInSwiftSupport.podspec
- includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'"
- steps:
- - uses: actions/checkout@v2
- - name: Update Bundler
- run: bundle update --bundler
- - name: Install Ruby gems with Bundler
- run: bundle install
- - name: Lint podspec using local source
- 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-11, macos-12]
- sdk: ['macosx', 'iphonesimulator']
- include:
- - sdk: 'macosx'
- destination: '"platform=OS X,arch=x86_64"'
- - sdk: 'iphonesimulator'
- destination: '"platform=iOS Simulator,name=iPhone 11"'
- steps:
- - uses: actions/checkout@v2
- - 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
- swift-button-functional-test:
- if: ${{ false }} # Disable integration tests while we figure out OTAs
- runs-on: macOS-latest
- defaults:
- run:
- working-directory: Samples/Swift/DaysUntilBirthday
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Build test target for Google Sign-in button for Swift
- run: |
- xcodebuild \
- -project DaysUntilBirthday.xcodeproj \
- build-for-testing \
- -scheme DaysUntilBirthday\ \(iOS\) \
- -sdk iphonesimulator \
- -destination 'platform=iOS Simulator,name=iPhone 11'
- - name: Run test target for Google Sign-in button for Swift
- env:
- EMAIL_SECRET : ${{ secrets.EMAIL_SECRET }}
- PASSWORD_SECRET : ${{ secrets.PASSWORD_SECRET }}
- run: |
- xcodebuild \
- -project DaysUntilBirthday.xcodeproj \
- test-without-building \
- -scheme DaysUntilBirthday\ \(iOS\) \
- -sdk iphonesimulator \
- -destination 'platform=iOS Simulator,name=iPhone 11' \
- EMAIL_SECRET=$EMAIL_SECRET \
- PASSWORD_SECRET=$PASSWORD_SECRET
|