Skip to content

Add BLS benchmarks to CI #1

Add BLS benchmarks to CI

Add BLS benchmarks to CI #1

name: "crypto-benchmarks-rs"
on:
pull_request:
paths:
- "crypto-benchmarks.rs/**"
push:
branches:
- main
paths:
- "crypto-benchmarks.rs/**"
jobs:
crypto-benchmarks-rs-check:
name: "Test"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Test Rust packages
working-directory: crypto-benchmarks.rs
run: |
cargo test
if [ $? -ne 0 ]; then
echo "Cargo test failed"
exit 1
fi