From 135bfd16a640fd63a2c31efaf266671270390a15 Mon Sep 17 00:00:00 2001 From: messense Date: Thu, 11 Apr 2024 20:05:45 +0800 Subject: [PATCH] cargo codspeed does not have --all-features --- .github/workflows/bench.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index ab034a5..df98974 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -29,10 +29,10 @@ jobs: run: cargo install cargo-codspeed - name: Build the benchmark target(s) - run: cargo codspeed build --all-features + run: cargo codspeed build --features tfidf,textrank - name: Run the benchmarks uses: CodSpeedHQ/action@v2 with: - run: cargo codspeed run --all-features + run: cargo codspeed run --features tfidf,textrank token: ${{ secrets.CODSPEED_TOKEN }}