Add Makefile and reference it in guidelines#77
Conversation
Reviewer's GuideThis PR centralizes project task execution by introducing a Makefile with lint, test, and format targets, updates contribution guidelines in AGENTS.md to reference these commands, and addresses a Clippy lint in the teardown test. Class diagram for new Makefile targetsclassDiagram
class Makefile {
+lint()
+test()
+fmt()
}
Makefile : lint() runs `cargo clippy --all-targets --all-features -- -D warnings`
Makefile : test() runs `RUSTFLAGS="-D warnings" cargo test --quiet`
Makefile : fmt() runs `cargo fmt --all`
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
WalkthroughThis update introduces a Makefile with Changes
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
🧰 Additional context used🪛 checkmake (0.2.2)Makefile[warning] 1-1: Missing required phony target "all" (minphony) [warning] 1-1: Missing required phony target "clean" (minphony) 🔇 Additional comments (3)
✨ Finishing Touches
🧪 Generate Unit Tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary
Testing
make lintmake testmake fmtmdformat-allmarkdownlint AGENTS.md docs/*.md README.mdhttps://chatgpt.com/codex/tasks/task_e_6853028266308322ba89ae9763829177
Summary by Sourcery
Add a Makefile with lint, test, and fmt targets, update contribution guidelines to reference these make commands, and fix a Clippy lint in the teardown test.
Bug Fixes:
Build:
Documentation:
Summary by CodeRabbit
Chores
Tests