From 94058374f8f08d079b05b5bc0a184d8f9583bbbd Mon Sep 17 00:00:00 2001 From: Geoff Martin Date: Mon, 9 Dec 2024 11:42:52 +0000 Subject: [PATCH] Run tests with optional features enabled. --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 456ebdd..91ba92c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,6 +78,13 @@ jobs: - name: Run tests run: cargo test --verbose + - name: Run tests (with dds_shm) + if: ${{ ! startsWith(matrix.os,'windows') }} + run: cargo test --features dds_shm --verbose + + - name: Run tests (with prefix_symbols) + run: cargo test --features prefix_symbols --verbose + # NOTE: In GitHub repository settings, the "Require status checks to pass # before merging" branch protection rule ensures that commits are only merged # from branches where specific status checks have passed. These checks are