Skip to content

Commit

Permalink
bench(audit): add bench
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Oct 17, 2023
1 parent 4f52f0e commit 00ae858
Show file tree
Hide file tree
Showing 10 changed files with 412 additions and 17 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Benches
on:
push:
branches: [main]
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always
RUST_LOG: "off"

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Benchmark
run: cargo bench --bench audit
Loading

0 comments on commit 00ae858

Please sign in to comment.