Skip to content

Commit

Permalink
Merge pull request #1 from ReactiveCocoa/anders/renaming
Browse files Browse the repository at this point in the history
Rename to Loop + Setup CI
  • Loading branch information
andersio authored May 11, 2020
2 parents 38d91b8 + 7ca5c55 commit 63dd88b
Show file tree
Hide file tree
Showing 30 changed files with 389 additions and 688 deletions.
140 changes: 0 additions & 140 deletions .circleci/config.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on: pull_request
name: Test
jobs:
test:
name: Test
runs-on: macos-latest
strategy:
matrix:
destination:
- -scheme "Loop-iOS" -destination "platform=iOS Simulator,name=iPhone 11 Pro"
- -scheme "Loop-tvOS" -destination "platform=tvOS Simulator,name=Apple TV 4K"
- -scheme "Loop-iOS" -destination "platform=macOS,variant=Mac Catalyst"
- -scheme "Loop-macOS" -destination "platform=macOS,arch=x86_64"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Dependency Cache
uses: actions/cache@v1
id: dependency-cache
with:
path: Carthage/Checkouts
key: carthage-${{ hashFiles('Cartfile.resolved') }}
- name: Pull Dependencies If Needed
if: steps.dependency-cache.outputs.cache-hit != 'true'
run: |
carthage checkout
- name: Test via xcodebuild
run: |
xcodebuild clean test -workspace Loop.xcworkspace ${{ matrix.destination }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=YES
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ DerivedData/

build/


#####
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
#
Expand Down Expand Up @@ -197,3 +196,4 @@ vendor/
Packages
.build/
DerivedData/
.swiftpm
4 changes: 2 additions & 2 deletions Loop.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Loop"
s.version = "0.9.0"
s.version = "1.0.0"
s.summary = "Unidirectional reactive architecture"

s.description = <<-DESC
Expand All @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/ReactiveCocoa/Loop.git", :tag => "#{s.version}" }
s.source_files = "ReactiveFeedback/*.{swift}"
s.source_files = "Loop/*.{swift}"

s.cocoapods_version = ">= 1.7.0"
s.swift_versions = ["5.0", "5.1"]
Expand Down
Loading

0 comments on commit 63dd88b

Please sign in to comment.