From 0d30b0b443a79e55766cc002475d95abeea586f1 Mon Sep 17 00:00:00 2001 From: tottoto Date: Thu, 14 Dec 2023 23:42:28 +0900 Subject: [PATCH] chore(ci): check tracing feature --- .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]