fix: Add full Rust CI pipeline (check, test, clippy)
Some checks failed
CI / test (push) Failing after 4s

This commit is contained in:
2026-02-03 09:45:32 +00:00
parent c3f5e1230b
commit f30fe8fc80

View File

@@ -12,12 +12,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Check Rust installation - name: Check Rust installation
run: | run: cargo --version
which cargo || echo "cargo not found"
cargo --version || echo "cargo not available"
- name: Check compilation - name: Check compilation
run: | run: cargo check --all-targets
cargo check --all-targets || echo "check failed"
- name: Run tests - name: Run tests
run: | run: cargo test --all
cargo test --all || echo "tests failed" - name: Run clippy
run: cargo clippy --all -- -D warnings