This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git


The following commit(s) were added to refs/heads/main by this push:
     new 00c18cdd chore(ci): ci checks support cargo fmt (#354)
00c18cdd is described below

commit 00c18cddf9aad00ee3c0b55d3d903b4f36d968fd
Author: Cancai Cai <[email protected]>
AuthorDate: Mon Nov 24 09:15:09 2025 +0800

    chore(ci): ci checks support cargo fmt (#354)
---
 .github/workflows/rust.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 1d6e81f8..43eed64f 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -50,7 +50,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        name: ["clippy", "docs", "test", "build"]
+        name: ["clippy", "docs", "test", "build", "fmt"]
 
     name: "${{ matrix.name }}"
     runs-on: ubuntu-latest
@@ -173,3 +173,7 @@ jobs:
         run: |
           # Generate docs with reduced parallelism to avoid memory issues
           cargo doc --workspace --all-features -j 2
+
+      - name: Format
+        if: matrix.name == 'fmt'
+        run: cargo fmt --all -- --check

Reply via email to