ci: add local verification command (make verify) - #536
Merged
El-swaggerito merged 1 commit intoJul 28, 2026
Merged
Conversation
Provide one contributor command for fmt, clippy, tests, and release WASM build, and document it from the README.
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.
Pull Request
Issue Reference
Closes #512
Summary
Adds a single local verification command (
make verify) that runs formatting, Clippy, workspace tests, and the release WASM build, and documents it from the README and contributor docs so contract PRs are easier to check before CI.Contract Functions Changed
Tests Added or Updated
No contract test changes. This PR adds/aligns the local verification entry point used to run existing checks.
docs/testing.mddocs/test-coverage.mdupdated to reflect new or changed testsSecurity Considerations
No security impact — Makefile, documentation, and PR template updates only. No contract logic, storage, auth, or token-transfer changes.
Security checklist (contract changes only)
N/A — no contract changes.
Commands Run
Confirmed
make verifyexpands to:cargo fmt --checkcargo clippy --tests -- -D warningscargo test --workspacecargo build --release --target wasm32-unknown-unknownmake -n verify— verified command sequencemake verify— blocked on currentmainby a pre-existinglib.rscompile error (unrelated merge damage outside this PR)cargo fmt --check— not re-run end-to-end herecargo clippy --tests -- -D warnings— blocked by same compile errorcargo test --workspace— blocked by same compile errorCI Status
Traceability Table
Makefileverifytarget)make verifyentry pointcargo build --release --target wasm32-unknown-unknowncargo test --workspacecargo fmt --check+cargo clippy --tests -- -D warnings