Skip to content

Commit ea91323

Browse files
committed
Add a workflow for running benchmarks for encryption
1 parent fdeaef6 commit ea91323

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/benchmarks.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Benchmarks
2+
3+
on:
4+
push:
5+
branches:
6+
- workspace
7+
- main
8+
9+
jobs:
10+
benchmarks:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout our code
14+
uses: actions/checkout@v4
15+
16+
- name: Install Rust
17+
uses: dtolnay/rust-toolchain@stable
18+
19+
- name: Run benchmarks
20+
run: cargo bench --workspace --all-targets

0 commit comments

Comments
 (0)