File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1313 fail-fast : false
1414 matrix :
1515 image :
16- - swift:5.0.3-xenial
1716 - swift:5.1.5-xenial
18- - swift:5.2.5-xenial
19- - swift:5.3.2-xenial
2017 - swift:5.3.2-bionic
18+ - swift:5.9.2-focal
2119 container : ${{ matrix.image }}
2220 steps :
2321 - name : Checkout Repository
@@ -27,19 +25,19 @@ jobs:
2725 - name : Build Swift Release Package
2826 run : swift build -c release
2927 - name : Run Tests
30- run : swift test
28+ run : swift test --enable-test-discovery
3129 nextstep :
32- runs-on : macos-latest
30+ runs-on : macos-13
3331 steps :
3432 - name : Select latest available Xcode
35- uses : maxim-lobanov/setup-xcode@v1.2.1
33+ uses : maxim-lobanov/setup-xcode@v1
3634 with :
37- xcode-version : 12.2
35+ xcode-version : ' ~15.0 '
3836 - name : Checkout Repository
3937 uses : actions/checkout@v2
4038 - name : Build Swift Debug Package
4139 run : swift build -c debug
4240 - name : Build Swift Release Package
4341 run : swift build -c release
4442 - name : Run Tests
45- run : swift test
43+ run : swift test --enable-test-discovery
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ This is a **standalone project** and has no other dependencies but
1414
1515Apart from the protocol implementation which can encode and decode
1616[ RESP] ( https://redis.io/topics/protocol ) (REdis Serialization Protocol),
17- we also provide a [ Redis client module] ( Sources/Redis/README.md )
17+ we also provide a [ Redis client module] ( https://github.com/NozeIO/swift-nio-redis-client )
1818build on top.
1919
2020What is Redis?
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ open class RESPChannelHandler : ChannelDuplexHandler {
5656 try parser. feed ( buffer) { respValue in
5757 self . channelRead ( context: context, value: respValue)
5858 }
59+ context. flush ( )
5960 }
6061 catch {
6162 context. fireErrorCaught ( error)
You can’t perform that action at this time.
0 commit comments