diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad3c013..4ba3c05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Makefile b/Makefile index 22c606a..751123b 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/Tests/OneWayTests/StoreTests.swift b/Tests/OneWayTests/StoreTests.swift index e77148c..913e200 100644 --- a/Tests/OneWayTests/StoreTests.swift +++ b/Tests/OneWayTests/StoreTests.swift @@ -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 {