dtmt/.ci/tasks/clippy.sh
Lucas Schwiderski 4c96bcf5ba
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
Improve CI log output
2023-11-23 13:31:43 +01:00

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"