ci: Enable consistency check for fuzz workspace

`fuzz` is a separate workspace, enable consistency check on rust-vmm
crates in `fuzz` to keep stuffs in sync with root workspace.

Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
This commit is contained in:
Ruoqing He 2024-11-04 17:17:40 +08:00 committed by Rob Bradford
parent 838a857311
commit a6a3d247da

View File

@ -22,5 +22,11 @@ jobs:
with:
toolchain: stable
- name: Check Rust VMM Package Consistency
- name: Check Rust VMM Package Consistency of root Workspace
run: python3 scripts/package-consistency-check.py github.com/rust-vmm
- name: Check Rust VMM Package Consistency of fuzz Workspace
run: |
pushd fuzz
python3 ../scripts/package-consistency-check.py github.com/rust-vmm
popd