Skip to content

Commit

Permalink
Merge commit '2ce925e218c9599756a7fb6fd36b25bbaaea3d57' into ognidets…
Browse files Browse the repository at this point in the history
…-OKTA-449793-Review-error-handling
  • Loading branch information
oleggnidets-okta committed Dec 13, 2021
2 parents 7350d07 + 2ce925e commit a0448ac
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
File renamed without changes.
23 changes: 23 additions & 0 deletions .github/workflows/okta-auth.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Okta Auth Swift

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
UnitTests:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: iOS
run: xcodebuild -workspace OktaAuthSdk.xcworkspace -scheme "OktaAuthNative iOS" -destination "platform=iOS Simulator,OS=latest,name=iPhone 11" clean test
- name: Swift
run: swift test -v
PackageValidation:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: Cocoapods
run: pod lib lint --allow-warnings
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
.library(name: "OktaAuthNative", targets: ["OktaAuthNative"])
],
targets: [
.target(name: "OktaAuthNative", dependencies: [], path: "Source", exclude: ["Source/Info.plist"]),
.target(name: "OktaAuthNative", dependencies: [], path: "Source", exclude: ["Info.plist"]),
.testTarget(name: "OktaAuthNative_Tests", dependencies: ["OktaAuthNative"], path: "Tests", exclude: ["AuthenticationClientTests.swift"])
]
)
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[![iOS_13 ready](https://img.shields.io/badge/iOS_13-ready-brightgreen.svg?style=for-the-badge)](https://github.com/okta/okta-auth-swift/releases/tag/2.0.1)

[<img src="https://aws1.discourse-cdn.com/standard14/uploads/oktadev/original/1X/0c6402653dfb70edc661d4976a43a46f33e5e919.png" align="right" width="256px"/>](https://devforum.okta.com/)
[![CI Status](https://travis-ci.org/okta/okta-auth-swift.svg?branch=master)](https://travis-ci.org/okta/okta-auth-swift)
[![CI Status](https://github.com/okta/okta-auth-swift/actions/workflows/okta-auth.yml/badge.svg)](https://github.com/okta/okta-auth-swift/actions/)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Version](https://img.shields.io/cocoapods/v/OktaAuthSdk.svg?style=flat)](http://cocoapods.org/pods/OktaAuthSdk)
[![License](https://img.shields.io/cocoapods/l/OktaAuthSdk.svg?style=flat)](http://cocoapods.org/pods/OktaAuthSdk)
[![Platform](https://img.shields.io/cocoapods/p/OktaAuthSdk.svg?style=flat)](http://cocoapods.org/pods/OktaAuthSdk)
[![Swift](https://img.shields.io/badge/swift-4.2-orange.svg?style=flat)](https://developer.apple.com/swift/)
[![Swift](https://img.shields.io/badge/swift-5.0-orange.svg?style=flat)](https://developer.apple.com/swift/)

# Okta Swift Authentication SDK

Expand Down

0 comments on commit a0448ac

Please sign in to comment.