Skip to content

Commit

Permalink
Missing feature activation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adria0 committed Jun 19, 2024
1 parent 590aa3b commit 814a3d4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- feature_set: basic
features: batch,dev-graph,gadget-traces
features: --features batch,dev-graph,gadget-traces
- feature_set: all
features: batch,dev-graph,gadget-traces,test-dev-graph,thread-safe-region,sanity-checks,circuit-params,lookup-any-sanity-checks

features: --all-features
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -30,7 +29,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --release --workspace --no-default-features --features "${{ matrix.features }}"
args: --verbose --release --workspace --no-default-features ${{ matrix.features }}

examples:
name: Run the examples
Expand Down

0 comments on commit 814a3d4

Please sign in to comment.