We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d21f82 commit b142941Copy full SHA for b142941
.github/workflows/rust.yml
@@ -37,3 +37,7 @@ jobs:
37
run: rustup component add clippy
38
- name: Run Clippy
39
run: make clippy
40
+ - name: Install Format
41
+ run: rustup component add rustfmt
42
+ - name: Run fmt
43
+ run: make fmt
Makefile
@@ -19,3 +19,5 @@ test-sql-catalog:
19
cargo test -p iceberg-sql-catalog --lib && cargo clean -p iceberg-sql-catalog
20
clippy:
21
cargo clippy --all-targets --all-features -- -D warnings
22
+fmt:
23
+ cargo fmt --all -- --check
0 commit comments