Add Rust CI workflow for build and test processes
Some checks failed
Rust CI / build-test (push) Failing after 1m22s

This commit is contained in:
2026-01-08 14:32:37 +01:00
parent dd63e94140
commit d95b4a8fb5

View File

@@ -25,6 +25,11 @@ jobs:
target target
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust components
run: |
rustup component add rustfmt
rustup component add clippy
- name: Format (check) - name: Format (check)
run: cargo fmt --all -- --check run: cargo fmt --all -- --check