Browse Source

Add GHA

feature/gha
arnau 3 years ago
committed by arnaucube
parent
commit
32fef3fcfa
4 changed files with 15 additions and 11 deletions
  1. +13
    -0
      .github/workflows/rust.yml
  2. +0
    -9
      .travis.yml
  3. +1
    -1
      README.md
  4. +1
    -1
      benches/bench_mimc_hash.rs

+ 13
- 0
.github/workflows/rust.yml

@ -0,0 +1,13 @@
name: Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

+ 0
- 9
.travis.yml

@ -1,9 +0,0 @@
language: rust
rust:
- stable
cache:
- cargo
script:
- RUST_BACKTRACE=1 cargo test --all

+ 1
- 1
README.md

@ -1,4 +1,4 @@
# mimc-rs [![Crates.io](https://img.shields.io/crates/v/mimc-rs.svg)](https://crates.io/crates/mimc-rs) [![Build Status](https://travis-ci.org/arnaucube/mimc-rs.svg?branch=master)](https://travis-ci.org/arnaucube/mimc-rs)
# mimc-rs [![Crates.io](https://img.shields.io/crates/v/mimc-rs.svg)](https://crates.io/crates/mimc-rs) [![Test](https://github.com/arnaucube/mimc-rs/workflows/Test/badge.svg)](https://github.com/arnaucube/mimc-rs/actions?query=workflow%3ATest)
MIMC7 hash implementation in Rust, a zkSNARK friendly hash function.
https://eprint.iacr.org/2016/492.pdf

+ 1
- 1
benches/bench_mimc_hash.rs

@ -20,7 +20,7 @@ fn criterion_benchmark(c: &mut Criterion) {
big_arr.push(b2.clone());
let mimc7 = Mimc7::new();
c.bench_function("hash", |b| b.iter(|| mimc7.hash(big_arr.clone()).unwrap()));
c.bench_function("hash", |b| b.iter(|| mimc7.hash(big_arr.clone())));
}
criterion_group!(benches, criterion_benchmark);

Loading…
Cancel
Save