Add formatting and linting checks to CI

This commit is contained in:
thePR0M3TH3AN
2025-05-21 10:52:50 -04:00
parent 05423065c1
commit 23ac9a9533
13 changed files with 21 additions and 14 deletions

View File

@@ -35,6 +35,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y hyperfine jq bc # For benchmarks within run_all_tests.sh
- name: Check formatting
run: cargo fmt -- --check
- name: Lint with Clippy
run: cargo clippy -- -D warnings
- name: Ensure run_all_tests.sh is executable
run: chmod +x ./run_all_tests.sh