From 32eac04541f3d7b5898d22eb0e8bc08d39ebc56d Mon Sep 17 00:00:00 2001 From: billyevans Date: Thu, 22 May 2025 22:22:14 -0700 Subject: [PATCH] Attempt to fix benchmark action --- .github/workflows/rust.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c4b9518..b49cf39 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -148,13 +148,12 @@ jobs: key: ${{ runner.os }}-cargo-bench-${{ hashFiles('**/Cargo.lock') }} - name: Run benchmarks - run: cargo bench + run: cargo bench | tee benchmark_output.txt - name: Store benchmark result uses: benchmark-action/github-action-benchmark@v1 with: tool: 'cargo' - run: cargo bench | tee benchmark_output.txt output-file-path: benchmark_output.txt github-token: ${{ secrets.GITHUB_TOKEN }} auto-push: true