mirror of https://github.com/icedland/iced.git
Lua CI ck: move fmt check before clippy checks
This commit is contained in:
parent
db0f57d2f8
commit
3510f35b08
|
@ -125,6 +125,12 @@ misc_tests() {
|
||||||
|
|
||||||
patchci_verify_patched
|
patchci_verify_patched
|
||||||
|
|
||||||
|
echo "==== RUST FORMAT CHECK ===="
|
||||||
|
cargo fmt -- --color always --check
|
||||||
|
|
||||||
|
echo "==== LUA FORMAT CHECK ===="
|
||||||
|
stylua --color always --check tests -f ./stylua.toml
|
||||||
|
|
||||||
set -- \
|
set -- \
|
||||||
"lua51" \
|
"lua51" \
|
||||||
"lua52" \
|
"lua52" \
|
||||||
|
@ -135,12 +141,6 @@ misc_tests() {
|
||||||
cargo clippy --color always --release --features "$features"
|
cargo clippy --color always --release --features "$features"
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "==== RUST FORMAT CHECK ===="
|
|
||||||
cargo fmt -- --color always --check
|
|
||||||
|
|
||||||
echo "==== LUA FORMAT CHECK ===="
|
|
||||||
stylua --color always --check tests -f ./stylua.toml
|
|
||||||
|
|
||||||
cd "$curr_dir"
|
cd "$curr_dir"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue