refactor(debug)!: refactor debug system #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Performance Benchmarks | |
on: [push, pull_request] | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Build benchmark tool | |
run: cargo build --release --bin string-pipeline-bench | |
- name: Run benchmarks | |
run: | | |
./target/release/string-pipeline-bench --iterations 5000 > benchmark_results.txt | |
- name: Upload results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmark-results | |
path: benchmark_results.json |