Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add --frozen flag to
cargo check
in CI
- Loading branch information
d63ed60
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.
Please actually check if this works: you might have to specify the
--frozen
for the first command (or better all of them really) that touchesCargo.lock
, otherwise the subsequent commands won't actually have any changes to apply (as the changes would be applied by the prev. command that didn't have--frozen
passed to it). Not sure ifcargo fetch
orcargo fmt -- --check
need--frozen
- but you should definitely test this solution.d63ed60
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.
Indeed ! I fixed that in 1c22eba