CI: Check format before running test

Testing needs compilation and is slow. Format checking is quick.
As format checking fails more often than tests,
switching them should result in faster failure and feedback
This commit is contained in:
Jonas Zohren 2021-07-14 20:33:19 +00:00
parent 9268b33c3f
commit eaa4c77641

View file

@ -30,8 +30,8 @@ test:cargo:
- rustup component add clippy rustfmt
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --workspace --verbose --locked
- cargo fmt --all -- --check
- cargo test --workspace --verbose --locked
- cargo clippy
# --------------------------------------------------------------------- #