Skip to content

Commit 63dd88b

Browse files
authored
Merge pull request #1 from ReactiveCocoa/anders/renaming
Rename to Loop + Setup CI
2 parents 38d91b8 + 7ca5c55 commit 63dd88b

30 files changed

+389
-688
lines changed

.circleci/config.yml

Lines changed: 0 additions & 140 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
on: pull_request
2+
name: Test
3+
jobs:
4+
test:
5+
name: Test
6+
runs-on: macos-latest
7+
strategy:
8+
matrix:
9+
destination:
10+
- -scheme "Loop-iOS" -destination "platform=iOS Simulator,name=iPhone 11 Pro"
11+
- -scheme "Loop-tvOS" -destination "platform=tvOS Simulator,name=Apple TV 4K"
12+
- -scheme "Loop-iOS" -destination "platform=macOS,variant=Mac Catalyst"
13+
- -scheme "Loop-macOS" -destination "platform=macOS,arch=x86_64"
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Dependency Cache
18+
uses: actions/cache@v1
19+
id: dependency-cache
20+
with:
21+
path: Carthage/Checkouts
22+
key: carthage-${{ hashFiles('Cartfile.resolved') }}
23+
- name: Pull Dependencies If Needed
24+
if: steps.dependency-cache.outputs.cache-hit != 'true'
25+
run: |
26+
carthage checkout
27+
- name: Test via xcodebuild
28+
run: |
29+
xcodebuild clean test -workspace Loop.xcworkspace ${{ matrix.destination }} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=YES

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ DerivedData/
4545

4646
build/
4747

48-
4948
#####
5049
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
5150
#
@@ -197,3 +196,4 @@ vendor/
197196
Packages
198197
.build/
199198
DerivedData/
199+
.swiftpm

Loop.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "Loop"
4-
s.version = "0.9.0"
4+
s.version = "1.0.0"
55
s.summary = "Unidirectional reactive architecture"
66

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

2121
s.cocoapods_version = ">= 1.7.0"
2222
s.swift_versions = ["5.0", "5.1"]

0 commit comments

Comments
 (0)