Skip to content

Commit

Permalink
Add c_bindings feature when running tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtiomTr committed Jan 15, 2025
1 parent 9ffea65 commit 558aa60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit 558aa60

Please sign in to comment.