From 612c8156251a1930fbca867cd332545c4afd27e8 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Fri, 3 Mar 2023 16:59:47 +0100 Subject: [PATCH] Test with `check_suffix` feature in CI --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 558ef63..0eba2f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,3 +40,10 @@ jobs: run: | cargo test --release --no-default-features --lib -- --include-ignored cargo test --doc --no-default-features + + - name: Build with check_suffix + run: cargo build --features=check_suffix + - name: Run tests with check_suffix + run: | + cargo test --release --features=check_suffix --lib -- --include-ignored + cargo test --doc --features=check_suffix