From 558aa60e0a8b944dc9bbe1862147ebe6252b4d0a Mon Sep 17 00:00:00 2001 From: sirse Date: Wed, 15 Jan 2025 20:22:08 +0200 Subject: [PATCH] Add c_bindings feature when running tests in CI --- .github/workflows/backend-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index 9ac353170..414e0d44f 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -165,14 +165,14 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --manifest-path ${{ matrix.backend }}/Cargo.toml --no-fail-fast --release + args: --manifest-path ${{ matrix.backend }}/Cargo.toml --no-fail-fast --release --features c_bindings # Check parallel backend tests - name: "${{ matrix.backend }} Tests (parallel)" uses: actions-rs/cargo@v1 with: command: test - args: --manifest-path ${{ matrix.backend }}/Cargo.toml --no-fail-fast --release --features parallel + args: --manifest-path ${{ matrix.backend }}/Cargo.toml --no-fail-fast --release --features c_bindings,parallel # Check ckzg backend tests - name: "${{ matrix.backend }} Tests (c-kzg-4844)"