Skip to content

Commit

Permalink
edit GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
Siel committed Sep 19, 2024
1 parent d5bed0c commit 72d9c3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
- uses: actions/checkout@v4
- run: rustup update
- name: Run benchmark
run: cargo bench | tee output.txt
run: cd PMcore && cargo bench | tee output.txt

- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: Rust Benchmark
tool: 'cargo'
output-file-path: PMcore/output.txt
output-file-path: output.txt
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# Show alert with commit comment on detecting possible performance regression
Expand All @@ -37,7 +37,7 @@ jobs:
with:
name: Rust Benchmark
tool: 'cargo'
output-file-path: PMcore/output.txt
output-file-path: output.txt
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# Show alert with commit comment on detecting possible performance regression
Expand Down

0 comments on commit 72d9c3c

Please sign in to comment.