Bump version number to 3.11.4 #43
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: Okta OIDC iOS | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
UnitTests: | |
runs-on: macos-11 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_13.1.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v2 | |
- name: iOS | |
run: set -o pipefail && xcodebuild -project okta-oidc.xcodeproj -scheme "okta-oidc-ios" -destination "platform=iOS Simulator,OS=latest,name=iPhone 11" clean test | xcpretty | |
- name: macOS | |
run: set -o pipefail && xcodebuild -project okta-oidc.xcodeproj -scheme "okta-oidc-mac" -destination "platform=macOS" clean test | xcpretty | |
- name: Swift | |
run: swift test -v | |
UITests: | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: iOS | |
run: set -o pipefail && xcodebuild -project okta-oidc.xcodeproj -scheme "okta-oidc" -destination "platform=iOS Simulator,OS=latest,name=iPhone 11" clean test | xcpretty | |
PackageValidation: | |
runs-on: macos-11 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_13.1.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cocoapods | |
run: pod lib lint --allow-warnings |