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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,19 @@ jobs:
- name: Run core and desktop Rust tests
run: cargo test --locked -p bitfun-core -p bitfun-desktop

# These crates own platform-sensitive behavior that is not exercised by
# testing bitfun-core/bitfun-desktop alone. Keep their focused contract
# suites in the OS matrix so Linux success cannot hide Windows/macOS
# regressions in worker interruption, relay storage, or OAuth handling.
- name: Run Page Functions runtime tests
run: cargo test --locked -p bitfun-page-function-runtime

- name: Run Relay service tests
run: cargo test --locked -p bitfun-relay-service

- name: Run subscription authentication tests
run: cargo test --locked -p bitfun-ai-adapters --features subscription-auth subscription_auth

# ── Frontend: build ────────────────────────────────────────────────
frontend-build:
name: Frontend Build
Expand Down
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ glob = "0.3"
ignore = "0.4"
notify = "8.2"
dirs = "6.0"
keyring-core = "1.0.0"
apple-native-keyring-store = { version = "1.0.1", features = ["keychain"] }
windows-native-keyring-store = "1.1.0"
zbus-secret-service-keyring-store = { version = "1.0.0", features = ["crypto-rust"] }
dark-light = "1.1"
dunce = "1"
filetime = "0.2"
Expand Down
Loading
Loading