chore: pomelo workspace checks unfucking #263
Merged
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.
This branch makes two changes:
Turns out I had forgotten to add
pomelo
to the Just commands that run acheck for all crates, like
just check
,just clippy
, andjust docs
. So,it was never actually being checked, on CI or in VS Code (MY BAD LMAO).
Therefore, this branch adds it to those recipes so it actually gets checked.
Once we actually include
pomelo
injust check
, it turns out that thebuild is fucked, because Cargo doesn't realize what target to build
pomelo
for. Thus, I've also added a missing
forced-target="wasm32-unknown-unknown
to
pomelo
'sCargo.toml
, which should unfuck it.Also I fixed an "unnecessary mut" warning, because now that we're actually
linting
pomelo
on CI, it turns out that it, uh, has lints. Whoops.