Set up a standalone home: CI, release, contributing, and hygiene - #1
Merged
Conversation
Turn this from a generated split mirror into a real development home now that orrery consumes the crate as a published dependency: - CI: fmt, clippy -D warnings, test, and an MSRV build - Release: tag-triggered crates.io publish via Trusted Publishing + GitHub Release - CONTRIBUTING, PR and issue templates, dependabot, .gitignore, CHANGELOG - add #[rustfmt::skip] on the layer table so fmt --check passes (the one drift from the crate's in-repo source; no behavior change)
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.
What
Turns this repository from a generated cargo-rail split mirror into a real, standalone open-source home, now that Orrery consumes the crate as a published crates.io dependency rather than vendoring it.
.github/workflows/ci.yml):fmt --check,clippy -D warnings,test, plus an MSRV build on the version declared inCargo.toml..github/workflows/release.yml): push avX.Y.Ztag → publish to crates.io via Trusted Publishing (OIDC, no stored token) + a GitHub Release. Tag/version match is enforced.CONTRIBUTING.md, a PR template, bug/feature issue templates.dependabot.yml(cargo + actions),.gitignore.#[rustfmt::skip]on the layer table — the one drift from the crate's in-repo source; without itfmt --checkreformats the hand-aligned table. No behavior change.CHANGELOG.md.Verified locally
cargo fmt --all --check,cargo clippy --all-targets -- -D warnings,cargo test(6 unit + 1 doctest) all green. The crate is dependency-free and self-contained.