ci: test on macOS; document Windows as unsupported#51
Merged
Conversation
Split CI into a Linux-only lint job (fmt + clippy) and a test job that runs `cargo test --all` + dogfood across [ubuntu-latest, macos-14] — so the Darwin path/tree-sitter behavior that release.yml ships is exercised before a binary reaches users. State Windows as unsupported in the README and install docs. Closes #37 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Summary
Closes #37.
Releases ship an
aarch64-apple-darwinbinary (release.ymlbuilds it onmacos-14), but CI only ever ran onubuntu-latest— Darwin path handling and tree-sitter behavior were never exercised before a binary reached users. Separately, Windows was implicitly unsupported but said nowhere user-facing.Changes
.github/workflows/ci.yml): split into a Linux-onlycheckjob (fmt + clippy — no duplicate lint noise) and atestjob with a[ubuntu-latest, macos-14]matrix runningcargo test --all+ the dogfood.fail-fast: falseso one OS failing still reports the other.macos-14matches the runnerrelease.ymlalready uses.README.mdand add a platform-support table todocs/getting-started/install.md(the anchor grammar is forward-slash only andinstall.shrejects non-Unix systems; WSL is the escape hatch). Also corrected the prior install-doc line that wrongly implied Windows could "build from source."Verification
ci.ymlvalidated as well-formed YAML.ubuntu-latestandmacos-14.🤖 Generated with Claude Code