| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
Move CI, dev tools, and configs from root-level scattered locations into
a
unified `dev/` directory structure. Update all references across build
scripts, documentation, and editor configurations.
Also consolidate editor config generation into build.rs for automated
synchronization of rust-analyzer settings across VS Code and Zed.
|
| |
|
|
|
|
| |
Pass `--show-diff` to `git-unlock` and restructure CI steps as
(command, args) pairs to support per-step arguments. The diff prints
tracked workspace changes before they are discarded.
|
| |
|
|
|
|
| |
Store dirty workspace changes in a temporary commit so `git-unlock` can
restore them, with the marker file content (`true`/`false`) recording
which restore path to take.
|
| | |
|
| |
|
|
|
| |
Add temporary commit and restore commands to stabilize the workspace
during CI runs, with safety checks and error handling.
|
| |
|
|
| |
suffix
|
| | |
|
| | |
|
| |
|
|
|
|
| |
Add a new `test-examples` command that builds each example
and runs its `test.toml` cases, reporting failures and
setting a non-zero exit code when any example fails.
|
| |
|
|
|
|
|
| |
Add `markdown-compare` and `markdown-compare-all` commands to verify
that translated docs maintain the same structure as the reference.
Compare heading levels, code fences, lists, quotes, and other
structural elements while allowing text differences.
|
| |
|
|
|
|
| |
Add per-file report generation for markdown checks using the
reporter module, grouping outcomes by source file and exporting
ok or error results with snake_case item names.
|
| |
|
|
|
|
|
| |
Add `markdown-check` and `markdown-check-all` commands to verify Rust
code blocks in markdown files. Code blocks are compiled as test
projects, sharing temporary crates based on dependency configuration for
parallel execution.
|
| |
|
|
|
|
|
|
| |
Rename package-based terminology and structures to item-based, allowing
arbitrary items with associated locations instead of only crate
packages.
Locations are now carried through report files and included in generated
reports, with the fallback to `—` removed.
|
| | |
|
| |
|
|
| |
report
|
| |
|
|
|
|
|
| |
Move log parsing, ANSI stripping, and git info retrieval into a
`ResCollectLogs` resource read once during CI setup, keeping the
report command focused on rendering. Also add a `package_dirs` map
to `Manifests` for direct package name lookups.
|
|
|
Add `mingling_ci` as a standalone CI system built on Mingling 0.4.0
to validate the next version, with report collection and manifest
listing commands.
|