From abd247ed3ea1d15cfae6f32447cea45be2eee4fc Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 9 Aug 2022 17:16:07 +0200 Subject: [PATCH] Add check for debug feature --- .github/workflows/CI.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b51a39de7..1417b3754 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -87,6 +87,14 @@ jobs: command: rustc args: --target=${{ matrix.triple.target }} --manifest-path=Cargo.toml -- -D warnings use-cross: ${{ matrix.triple.cross }} + + - name: Check debug feature + uses: actions-rs/cargo@v1 + with: + command: rustc + args: --target=${{ matrix.triple.target }} --manifest-path=Cargo.toml --features=debug -- -D warnings + use-cross: ${{ matrix.triple.cross }} + - name: Check without multithreading uses: actions-rs/cargo@v1 with: