From c04d234a062f75ba091fc47a05d74722966126ef Mon Sep 17 00:00:00 2001 From: James Wilson Date: Mon, 30 Oct 2023 14:56:10 +0000 Subject: [PATCH] tweak CI to check parachain-example, too (#1234) --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2616d28a5b..f8fa1e4da4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -76,6 +76,10 @@ jobs: - name: Cargo hack; check each feature/crate on its own run: cargo hack --exclude subxt --exclude subxt-signer --exclude subxt-lightclient --exclude-all-features --each-feature check --workspace + # Check the parachain-example code, which isn't a part of the workspace so is otherwise ignored. + - name: Cargo check parachain-example + run: cargo check --manifest-path examples/parachain-example/Cargo.toml + wasm_check: name: Cargo check (WASM) runs-on: ubuntu-latest