Skip to content

Commit

Permalink
ci: add benchmarking workflow.
Browse files Browse the repository at this point in the history
This workflow runs `cargo bench` on rust stable to prevent bitrot of the
benchmarking tests.
  • Loading branch information
cpu committed Jun 22, 2023
1 parent 5a6fc94 commit b026236
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Benchmarking
permissions:
contents: read
on:
pull_request:
push:
jobs:
linting:
runs-on: ubuntu-latest
name: Bench
steps:
- name: Check out source repository
uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo bench

0 comments on commit b026236

Please sign in to comment.