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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ concurrency:

jobs:
macos:
runs-on: macos-14
runs-on: macos-26
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.app
run: sudo xcode-select -s /Applications/Xcode_26.0.1.app
- name: Run Swift Tests
run: |
make test
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
PLATFORM_IOS = iOS Simulator,name=iPhone 16
PLATFORM_IOS = iOS Simulator,name=iPhone 17
PLATFORM_MACOS = macOS
PLATFORM_TVOS = tvOS Simulator,name=Apple TV
PLATFORM_VISIONOS = visionOS Simulator,name=Apple Vision Pro # Temporarily disabling the visionOS simulator in GitHub Actions.
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 10 (46mm)
PLATFORM_VISIONOS = visionOS Simulator,name=Apple Vision Pro
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 11 (46mm)
CONFIG = debug

default: test
Expand Down
4 changes: 2 additions & 2 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Sources/OneWay/Reducer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

/// A protocol defining a reduce fuction to transition the current state to the next state and a
/// bind function for observing global states.
public protocol Reducer<Action, State> {
public protocol Reducer<Action, State>: Sendable {
associatedtype Action
associatedtype State: Equatable

Expand Down