You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,3 +54,17 @@ Key modules in `src/`:
54
54
-**error.rs** — Unified error type and `Result` alias
55
55
56
56
Integration tests live in `tests/integration.rs`.
57
+
58
+
## CI/CD
59
+
60
+
-**CI** (`.github/workflows/ci.yml`): Runs on every push/PR — `cargo test`, `cargo clippy -- -D warnings`, `cargo fmt --check`. Must pass before merging.
61
+
-**Release** (`.github/workflows/release.yml`): Triggered by pushing a `v*` tag. Builds binaries for 4 targets (macOS x86_64/ARM64, Linux x86_64/ARM64) and creates a GitHub release with the artifacts.
62
+
63
+
## Release Process
64
+
65
+
1. Bump `version` in `Cargo.toml`
66
+
2. Commit and push
67
+
3.`git tag v<version> && git push origin v<version>`
68
+
4. Release workflow builds binaries and publishes the GitHub release automatically
69
+
70
+
Tags cannot be deleted once published (repo rule), so always use a new version number.
0 commit comments