diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fabf027..162af20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,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