From 9a15eebd3d83564a9a5ba4ed20fb30ed7a1cb7a2 Mon Sep 17 00:00:00 2001 From: Rick Rainey Date: Wed, 2 Apr 2025 20:43:34 -0500 Subject: [PATCH] add cargo format to CI --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d3e1524..118df4f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,9 @@ jobs: - uses: actions/checkout@v4 - name: Build run: cargo build --verbose - - name: Run tests + - name: Run Tests run: cargo test --verbose - name: Clippy run: cargo clippy -- -D warnings + - name: Format + run: cargo fmt --check