fix: Add full Rust CI pipeline (check, test, clippy)
Some checks failed
CI / test (push) Failing after 4s
Some checks failed
CI / test (push) Failing after 4s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user