From 274583d94940e8c3e2acea5d8938698f87105881 Mon Sep 17 00:00:00 2001 From: Wendell Smith Date: Fri, 7 Jun 2024 10:59:57 -0400 Subject: [PATCH] Add cargo fmt check --- .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 e5642fe..de7903e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,4 +19,6 @@ jobs: - name: Run tests run: cargo test --verbose - name: Run clippy - run: cargo clippy --verbose \ No newline at end of file + run: cargo clippy --verbose + - name: Check fmt + run: cargo fmt --check --verbose \ No newline at end of file