Skip to content

Commit 1bd65f8

Browse files
committed
feat: add AsyncBencher support
1 parent 9c6a5a8 commit 1bd65f8

File tree

9 files changed

+807
-18
lines changed

9 files changed

+807
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- run: cargo codspeed build -p codspeed
4747
- run: cargo codspeed build -p codspeed-bencher-compat
48-
- run: cargo codspeed build -p codspeed-criterion-compat
48+
- run: cargo codspeed build --features async_futures -p codspeed-criterion-compat
4949

5050
- name: Run the benchmarks
5151
uses: CodSpeedHQ/action@feat/bundled-upload

.pre-commit-config.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ repos:
1616
- id: cargo-check
1717
args: [--all-targets]
1818
- id: cargo-check
19-
args: [--all-targets, --config, codspeed=true]
19+
name: cargo-check[codspeed, all-features]
20+
args: [--all-targets, --all-features, --config, codspeed=true]
2021
- id: clippy
2122
args: [--all-targets, --, -D, warnings]
2223
- id: clippy
23-
args: [--all-targets, --, -D, warnings, --cfg, codspeed]
24+
name: clippy[codspeed, all-features]
25+
args: [--all-targets, --all-features, --, -D, warnings, --cfg, codspeed]

0 commit comments

Comments
 (0)