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:
- uses: actions/checkout@v4
- name: Check Rust installation
run: |
which cargo || echo "cargo not found"
cargo --version || echo "cargo not available"
run: cargo --version
- name: Check compilation
run: |
cargo check --all-targets || echo "check failed"
run: cargo check --all-targets
- name: Run tests
run: |
cargo test --all || echo "tests failed"
run: cargo test --all
- name: Run clippy
run: cargo clippy --all -- -D warnings