mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 17:34:16 +00:00
555f789269
* Fixing custom_thumbnail updates. * Fixing issue with image posts. * Fixing upgrade deps script. * Adding API tests for custom thumbnails. * Remove pointless todo. * Address PR comments. --------- Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
15 lines
141 B
Bash
Executable file
15 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
pushd ../
|
|
|
|
# Check unused deps
|
|
cargo udeps --all-targets
|
|
|
|
# Upgrade deps
|
|
cargo upgrade
|
|
|
|
# Run clippy
|
|
cargo clippy
|
|
|
|
popd
|