From 0c0fb1b67498bf0197f788902e86658456e034be Mon Sep 17 00:00:00 2001 From: tottoto Date: Fri, 15 Dec 2023 01:24:57 +0900 Subject: [PATCH] chore(ci): check tracing feature (#3485) Closes #3484 Signed-off-by: Sven Pfennig --- .github/workflows/CI.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e850209540..b70b185448 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -159,6 +159,11 @@ jobs: env: RUSTFLAGS: "-D dead_code -D unused_imports" + - name: check --feature-powerset with tracing feature + run: cargo hack --no-dev-deps check --feature-powerset --depth 2 --features tracing --skip ffi + env: + RUSTFLAGS: "--cfg hyper_unstable_tracing -D dead_code -D unused_imports" + ffi: name: Test C API (FFI) needs: [style]