Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 0 additions & 51 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 @@ -13,7 +13,7 @@ let package = Package(
name: "Relay",
platforms: [
.macOS(.v10_10),
.iOS(.v8),
.iOS(.v12),
.tvOS(.v9),
.watchOS(.v2)
],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This framework aims to champion the [Test Pyramid](https://martinfowler.com/arti
- [Container Scope](#container-scope)

## Requirements
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+ / Linux
- iOS 12.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+ / Linux
- Xcode 10+ / Swift 4.2+

## Installation
Expand Down
2 changes: 1 addition & 1 deletion Relay.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.summary = 'Swift Dynamic Dependency Injection for modern testing'
spec.source = { :git => 'https://github.com/mindbody/Relay.git', :tag => $version }
spec.source_files = 'Sources/**/*.swift'
spec.ios.deployment_target = '8.0'
spec.ios.deployment_target = '12.0'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
spec.osx.deployment_target = '10.10'
Expand Down
30 changes: 30 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
trigger:
- master

pool:
vmImage: 'macos-latest'

variables:
- group: mobile-shared-secrets

jobs:
- job: tests
displayName: 'Run Tests'
steps:
- script: |
swift --version
displayName: 'Swift version'
- script: |
swiftlint version
displayName: 'Swift Lint version'
- script: |
swiftlint lint --quiet
displayName: 'Lint'
- script: |
git config --global url."https://$GITHUB_ACCESS_TOKEN@github.com/mindbody".insteadOf "https://github.com/mindbody"
displayName: 'Update Git URLs'
env:
GITHUB_ACCESS_TOKEN: $(GITHUB_ACCESS_TOKEN)
- script: |
xcodebuild test -workspace Relay.xcworkspace -scheme Relay-iOS -destination 'platform=iOS Simulator,name=iPhone 8,OS=latest'
displayName: xcodebuild test