File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 32
32
timeout-minutes : 10
33
33
steps :
34
34
- uses : actions/checkout@v4
35
+ - name : Build Swift
36
+ run : make build-swift
35
37
- name : Run Swift Tests
36
38
run : make test
Original file line number Diff line number Diff line change @@ -32,4 +32,7 @@ test-swift6:
32
32
swift package clean
33
33
swift test -Xswiftc -swift-version -Xswiftc 6
34
34
35
- .PHONY : build-all build test test-swift6
35
+ build-swift :
36
+ swift build
37
+
38
+ .PHONY : build-all build test test-swift6 build-swift
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ final class StoreTests: XCTestCase {
61
61
func test_lotsOfActions( ) async {
62
62
let iterations : Int = 100_000
63
63
await sut. send ( . incrementMany)
64
- await sut. expect ( \. count, iterations, timeout: 5 )
64
+ await sut. expect ( \. count, iterations, timeout: 10 )
65
65
}
66
66
67
67
func test_threadSafeSendingActions( ) async {
You can’t perform that action at this time.
0 commit comments