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
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. Same template as
standard-atmosphere..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 enforced.CONTRIBUTING.md, a PR template, bug/feature issue templates (worded for this crate's domain — IEC 61400-12-1, the profile laws).dependabot.yml(cargo + actions),.gitignore.No source change:
lib.rsis already fmt-clean.CHANGELOG.mdalready present.Verified locally
cargo fmt --all --check,cargo clippy --all-targets -- -D warnings,cargo test(8 unit + 2 doctest) all green.