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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,7 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Build Swift
run: make build-swift
- name: Run Swift Tests
run: make test
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ test-swift6:
swift package clean
swift test -Xswiftc -swift-version -Xswiftc 6

.PHONY: build-all build test test-swift6
build-swift:
swift build

.PHONY: build-all build test test-swift6 build-swift
2 changes: 1 addition & 1 deletion Tests/OneWayTests/StoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ final class StoreTests: XCTestCase {
func test_lotsOfActions() async {
let iterations: Int = 100_000
await sut.send(.incrementMany)
await sut.expect(\.count, iterations, timeout: 5)
await sut.expect(\.count, iterations, timeout: 10)
}

func test_threadSafeSendingActions() async {
Expand Down