Skip to content

Commit 52ed474

Browse files
committed
feat: add performance benchmark action
1 parent e19addf commit 52ed474

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Performance Benchmark
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
benchmark:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v3
11+
12+
- name: Run benchmarks
13+
run: ./run_benchmarks.sh
14+
15+
- name: Upload results
16+
uses: actions/upload-artifact@v2
17+
with:
18+
name: benchmark-results
19+
path: ./benchmark_results.csv

0 commit comments

Comments
 (0)