-
Notifications
You must be signed in to change notification settings - Fork 78
chore: expand & re-use lint CI workflows #509
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| /// Returns an iterator over the [`InnerNode`] and the respective [`NodeIndex`] of the | ||
| /// [`PartialSmt`]. | ||
| pub fn inner_node_indicies(&self) -> impl Iterator<Item = (NodeIndex, InnerNode)> + '_ { | ||
| pub fn inner_node_indices(&self) -> impl Iterator<Item = (NodeIndex, InnerNode)> + '_ { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so this was added in #494 to support 0xMiden/miden-node#1158, but (for now?) the latter doesn't use these getters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we still need to propagate the dependencies to miden base/node.
bobbinth
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Thank you! I left one small comment inline and also seems to have broken the build when trying to resolve merge conflicts (sorry!). Once these are addressed, we should be good to merge.
| /// Returns an iterator over the [`InnerNode`] and the respective [`NodeIndex`] of the | ||
| /// [`PartialSmt`]. | ||
| pub fn inner_node_indicies(&self) -> impl Iterator<Item = (NodeIndex, InnerNode)> + '_ { | ||
| pub fn inner_node_indices(&self) -> impl Iterator<Item = (NodeIndex, InnerNode)> + '_ { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we still need to propagate the dependencies to miden base/node.
0bdc589 to
7b29d71
Compare
Describe your changes
typos,toml,workspace-lintsandunused_depsjobsEDIT: I'm not 100% convinced about re-using the workflows. It makes the CI much less transparent (one needs to look outside of this repo to find out which jobs are actually run as part of linting).
Checklist before requesting a review
nextaccording to naming convention.