Skip to content
Merged
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
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
name: CI

on: push
on:
push:
pull_request:

permissions:
contents: read

jobs:
test:
runs-on: macos-12

name: Test
runs-on: macos-15
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- name: Select Xcode 14
run: sudo xcode-select -s /Applications/Xcode_14.1.app
- name: Checkout
uses: actions/checkout@v6
- name: Print Swift version
run: swift --version
- name: Test
run: swift test
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,27 @@ A collection of useful extensions for Apple's [Combine framework](https://develo

### Publishers

- [AgainAt](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/AgainAt.swift)
- [AnyConnectablePublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/AnyConnectablePublisher.swift)
- [BufferPassthroughSubject](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/BufferPassthroughSubject.swift)
- [EnumeratedPublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/Enumerated.swift)
- [Distinct](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/Distinct.swift)
- [Enumerated](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/Enumerated.swift)
- [InputStreamPublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/InputStreamPublisher.swift)
- [MulticastLatest](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/MulticastLatest.swift)
- [OutputStreamPublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/OutputStreamPublisher.swift)
- [ReduceLatestPublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/ReduceLatest.swift)
- [RetryIfPublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/RetryIf.swift)
- [ThrottleWhilePublisher](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/ThrottleWhile.swift)
- [ReduceLatest](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/ReduceLatest.swift)
- [RetryIf](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/RetryIf.swift)
- [ThrottleWhile](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/ThrottleWhile.swift)

### Extensions

- [Cancellable.onCancel()](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/OnCancel.swift)
- [Publisher.sink()](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/Publisher+Sink.swift)

### Schedulers

- [TestScheduler](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/TestScheduler.swift)
- [UIScheduler](https://github.com/shareup/combine-extensions/blob/main/Sources/CombineExtensions/UIScheduler.swift)

### Thread-safe subscription management

Expand All @@ -25,7 +38,7 @@ A collection of useful extensions for Apple's [Combine framework](https://develo
Add CombineExtensions to the dependencies section of your package.swift file.

```swift
.package(url: "https://github.com/shareup/combine-extensions.git", from: "6.0.0")
.package(url: "https://github.com/shareup/combine-extensions.git", from: "6.1.0")
```

## License
Expand Down
Loading