ci(rust): run clippy + tests on macOS and Windows#18
Merged
statik merged 1 commit intoJun 21, 2026
Merged
Conversation
Split rustfmt into its own job and run the Rust clippy + test job across ubuntu, macOS, and Windows. This proves the pure core compiles and passes on every target platform and gates the OS-specific adapters (injection, window enumeration, UIA) that land next behind cfg(target_os). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01R8X1NxFiaLGJzwUD5wgRTv
statik
merged commit Jun 21, 2026
2f82342
into
claude/tauri-migration-self-update-74d57g
5 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Step 6 of the Tauri/Rust migration
Expands Rust CI to the platforms the app actually ships on.
What's here
rustfmtinto its own ubuntu job.fail-fast: false).Why
Proves the pure core compiles and passes on every target OS, and — importantly — gates the OS-specific adapters (keystroke injection, window enumeration, Windows UI Automation) that land next behind
cfg(target_os), so their per-platform compilation is actually verified in CI rather than only on a developer's machine.Verification
The core is OS-independent and already green on Linux; this PR confirms the same on macOS and Windows runners.
Part of: #10, #11, #12.
Generated by Claude Code