Implement BitCell v0.3: Production-ready CA tournament blockchain with full R1CS ZK circuits, P2P networking architecture, RocksDB storage, proper cryptography (ECVRF, CLSAG), ZKVM, economics, monitoring, and comprehensive testing (92-95% complete) #28
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: Benchmarks | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| benchmark: | |
| name: Run Benchmarks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install criterion | |
| run: cargo install cargo-criterion | |
| - name: Run benchmarks | |
| run: cargo bench --all | |
| - name: Store benchmark result | |
| uses: benchmark-action/github-action-benchmark@v1 | |
| with: | |
| name: Rust Benchmark | |
| tool: 'cargo' | |
| output-file-path: target/criterion/report/index.html | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| auto-push: true |