We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8407a3 commit 69ef9d3Copy full SHA for 69ef9d3
1 file changed
.github/workflows/ci.yml
@@ -348,11 +348,17 @@ jobs:
348
349
benchmarks:
350
runs-on: "ubuntu-latest"
351
- name: Run benchmarks
+ name: Run benchmarks (${{ matrix.mode }})
352
if: ${{ github.event_name != 'release' }}
353
needs:
354
- info
355
- tests
356
+ strategy:
357
+ fail-fast: false
358
+ matrix:
359
+ mode:
360
+ - simulation
361
+ - memory
362
steps:
363
- name: ⤵️ Checkout repository
364
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
@@ -378,7 +384,7 @@ jobs:
378
384
uses: CodSpeedHQ/action@a4a36bb07c0638b0b4ca52bf1f3dad1b4289e52f # v4.18.1
379
385
with:
380
386
run: pytest tests/ --codspeed
381
- mode: instrumentation
387
+ mode: ${{ matrix.mode }}
382
388
383
389
sdist:
390
name: Create source distribution
0 commit comments