From 158d68da5d157de372038a50969748eb9c964ad0 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Tue, 1 Oct 2024 23:51:08 +0300 Subject: [PATCH] run on some crates --- .github/workflows/ci.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d94084735bd..e13236926b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,7 +138,24 @@ jobs: with: cache-on-failure: true - name: cargo hack - run: cargo hack check --feature-powerset + run: cargo hack check --feature-powerset --depth 1 + + feature-checks-full: + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - uses: taiki-e/install-action@cargo-hack + - uses: Swatinem/rust-cache@v2 + with: + cache-on-failure: true + - name: cargo hack + run: | + cargo hack check --feature-powerset \ + -p alloy-consensus \ + -p alloy-eips \ + -p alloy-genesis check-no-std: name: check no_std ${{ matrix.features }}