ci: Enable consistency check for rust-vmm packages
Enable `package-consistency` check to prevent contributor or dependabot accidentally break `rust-vmm` consistency. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
This commit is contained in:
parent
337cbf3d33
commit
71b0eb3c21
1 changed files with 26 additions and 0 deletions
26
.github/workflows/package-consistency.yaml
vendored
Normal file
26
.github/workflows/package-consistency.yaml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: Cloud Hypervisor Consistency
|
||||
on: [pull_request, merge_group]
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Rust VMM Consistency Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Code checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Install dependencies
|
||||
run: sudo apt install -y python3
|
||||
|
||||
- name: Install Rust toolchain stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Check Rust VMM Package Consistency
|
||||
run: python3 scripts/package-consistency-check.py github.com/rust-vmm
|
||||
Loading…
Add table
Add a link
Reference in a new issue