From cbe12f8eb71f9117ade4f2b7a32d589bedd40c7c Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Wed, 21 May 2025 10:54:19 -0400 Subject: [PATCH] Add formatting and linting checks to CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c12911..5a2b3fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,12 @@ jobs: - name: Ensure run_all_tests.sh is executable run: chmod +x ./run_all_tests.sh + - name: Check formatting + run: cargo fmt -- --check + + - name: Lint with Clippy + run: cargo clippy -- -D warnings + - name: Run Comprehensive Test Script run: ./run_all_tests.sh