CI clippy ere-dockerized (#94)

Co-authored-by: Ignacio Hagopian <jsign.uy@gmail.com>
This commit is contained in:
Han
2025-08-18 19:21:31 +08:00
committed by GitHub
parent 06d15a4a77
commit 80330caf59
2 changed files with 12 additions and 6 deletions

View File

@@ -16,10 +16,15 @@ jobs:
strategy:
fail-fast: false
matrix:
crate:
- build-utils
- test-utils
- zkvm-interface
include:
- crate: build-utils
run_test: true
- crate: test-utils
run_test: true
- crate: zkvm-interface
run_test: true
- crate: ere-dockerized
run_test: false # They are run in per-zkVM workflows
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -36,4 +41,5 @@ jobs:
run: cargo clippy --all-targets --package ${{ matrix.crate }} -- -D warnings
- name: Run cargo test
if: ${{ matrix.run_test }}
run: cargo test --release --package ${{ matrix.crate }}