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
{{ message }}
This repository was archived by the owner on Aug 30, 2025. It is now read-only.
#9 introduces code linting with clippy and running the project's tests. We should take this a step further and ensure consistent coding style in our continuous integration pipeline using rustfmt to ensure consistency.
#9 introduces code linting with
clippyand running the project's tests. We should take this a step further and ensure consistent coding style in our continuous integration pipeline usingrustfmtto ensure consistency.See https://github.com/rust-lang-nursery/rustfmt#checking-style-on-a-ci-server for a minimal example for setting up
rustfmton CI, as well as this blog post on enforcing style in CI for Rust projects.