Some checks failed
lint/clippy Checking for common mistakes and opportunities for code improvement
build/linux Build for the target platform: linux
build/msvc Build for the target platform: msvc
15 lines
193 B
Bash
Executable file
15 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
title() {
|
|
printf "\033[1m%s\033[0m\n" "$1"
|
|
}
|
|
|
|
title "Install clippy"
|
|
rustup component add clippy
|
|
|
|
title "Run clippy"
|
|
cargo clippy --color always --no-deps
|
|
|
|
title "Done"
|