this post was submitted on 03 Aug 2023
10 points (100.0% liked)
Rust Programming
8172 readers
20 users here now
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Looks to be failing a
cargo fmt
check: https://woodpecker.join-lemmy.org/repos/129/pipeline/1821/8If I read that right you have one extra blank new line that the nightly rust fmt is not happy about.
You should just need to run
cargo fmt
on the code, might need the same nightly version as above though.Thank you, removed the whitespace for another run: https://github.com/LemmyNet/lemmy/pull/3805/commits/33cc3967452d6b4a0369e4f85b17ff121c89451d
Looks like it is now failing on the SQL fmt checks - which you have not changed and so are likely a problem in master. Seems https://github.com/LemmyNet/lemmy/pull/3800 fixes that issue and you are likely going to need to wait for that to be merged first. Or otherwise talk to the maintainers about it since it is broken in master and there is aPR to fix the issue.
Thank you!