1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
@echo off cargo test if errorlevel 1 goto error cargo fmt --all -- --check if errorlevel 1 goto error cargo clippy --all if errorlevel 1 goto error exit /b 0 :error echo Validation error exit /b 1