Add formatting and linting checks to CI

This commit is contained in:
thePR0M3TH3AN
2025-05-21 10:54:19 -04:00
parent 05423065c1
commit cbe12f8eb7

View File

@@ -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