Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Xcode 13 migration (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
moglistree authored Jul 30, 2021
1 parent f95540e commit 619e69c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
19 changes: 6 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,21 @@ commands:
path: test_output

jobs:
test-xcode10-ios12:
test-xcode12-ios14:
macos:
xcode: "10.3.0"
xcode: "12.5.0"
steps:
- test_and_store_results

test-xcode11-ios13:
macos:
xcode: "11.0.0"
steps:
- test_and_store_results

test-xcode12-ios14:
test-xcode13-ios15:
macos:
xcode: "12.4.0"
xcode: "13.0.0"
steps:
- test_and_store_results

workflows:
version: 2.1
build-and-test:
jobs:
- test-xcode10-ios12
- test-xcode11-ios13
- test-xcode12-ios14
- test-xcode12-ios14
- test-xcode13-ios15
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![Platforms](https://img.shields.io/badge/platform-%20iOS%20|%20macOS%20|%20tvOS%20|%20linux-gray.svg)](https://img.shields.io/badge/platform-%20iOS%20|%20macOS%20|%20tvOS%20|%20linux-gray.svg)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Swift Package Manager Compatible](https://img.shields.io/badge/SwiftPM-Compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager)
![Xcode version](https://img.shields.io/badge/Xcode-13.0.0-blue)

Lift is a Swift library for generating and extracting values into and out of JSON-like data structures. Lift was carefully designed to meet the following requirements:

Expand Down
2 changes: 1 addition & 1 deletion Tests/LiftTests/JarTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ class JarTests: XCTestCase {
}

func testArrayOfTuples() throws {
let jar: Jar = [["Adam", 25 as Jar], ["Eve", 20]]
let jar: Jar = [["Adam", 25 as Jar], ["Eve", 20 as Jar]]
typealias NameAndAge = (name: String, age: Int)
let nameAndAges: [NameAndAge] = try (jar^ as [Jar]).map { jar in try (jar[0]^, jar[1]^) }
XCTAssertEqual(nameAndAges[0].name, "Adam")
Expand Down

0 comments on commit 619e69c

Please sign in to comment.