Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
helje5 committed Jan 29, 2024
2 parents 3bdc6fd + 7d74e47 commit 8bdd2e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ jobs:
fail-fast: false
matrix:
image:
- swift:5.0.3-xenial
- swift:5.1.5-xenial
- swift:5.2.5-xenial
- swift:5.3.2-xenial
- swift:5.3.2-bionic
- swift:5.9.2-focal
container: ${{ matrix.image }}
steps:
- name: Checkout Repository
Expand All @@ -27,19 +25,19 @@ jobs:
- name: Build Swift Release Package
run: swift build -c release
- name: Run Tests
run: swift test
run: swift test --enable-test-discovery
nextstep:
runs-on: macos-latest
runs-on: macos-13
steps:
- name: Select latest available Xcode
uses: maxim-lobanov/setup-xcode@v1.2.1
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 12.2
xcode-version: '~15.0'
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Swift Debug Package
run: swift build -c debug
- name: Build Swift Release Package
run: swift build -c release
- name: Run Tests
run: swift test
run: swift test --enable-test-discovery
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This is a **standalone project** and has no other dependencies but

Apart from the protocol implementation which can encode and decode
[RESP](https://redis.io/topics/protocol) (REdis Serialization Protocol),
we also provide a [Redis client module](Sources/Redis/README.md)
we also provide a [Redis client module](https://github.com/NozeIO/swift-nio-redis-client)
build on top.

What is Redis?
Expand Down
1 change: 1 addition & 0 deletions Sources/NIORedis/RESPChannelHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ open class RESPChannelHandler : ChannelDuplexHandler {
try parser.feed(buffer) { respValue in
self.channelRead(context: context, value: respValue)
}
context.flush()
}
catch {
context.fireErrorCaught(error)
Expand Down

0 comments on commit 8bdd2e9

Please sign in to comment.