From fb09fbed5a8f0319bfcc4ea690f4435f716bd47b Mon Sep 17 00:00:00 2001 From: roshan <19766713+rpalakkal@users.noreply.github.com> Date: Wed, 17 Apr 2024 17:02:04 -0400 Subject: [PATCH] fix: ci tests --- .github/workflows/test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ad55c3..f6ff92c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,11 +35,11 @@ jobs: run: | export PROVIDER_URI=${{ secrets.PROVIDER_URI_SEPOLIA }} mkdir data - cargo run --example keccak -- --input sdk/data/keccak_input.json --config sdk/data/keccak_config.json --aggregate --auto-config-aggregation keygen - cargo run --example keccak -- --input sdk/data/keccak_input.json --config sdk/data/keccak_config.json --aggregate run - cargo run --example rlc -- -c sdk/data/rlc_config.json keygen - cargo run --example rlc -- --input sdk/data/rlc_input.json run - cargo run --example account_age -- -k 15 keygen - cargo run --example account_age -- --input sdk/data/account_age_input.json run - cargo run --example quickstart -- -k 15 keygen - cargo run --example quickstart -- --input sdk/data/quickstart_input.json run + cargo run --example keccak -- run --input sdk/data/keccak_input.json --config sdk/data/keccak_config.json --aggregate --auto-config-aggregation keygen + cargo run --example keccak -- run --input sdk/data/keccak_input.json --config sdk/data/keccak_config.json --aggregate run + cargo run --example rlc -- run -c sdk/data/rlc_config.json keygen + cargo run --example rlc -- run --input sdk/data/rlc_input.json run + cargo run --example account_age -- run -k 15 keygen + cargo run --example account_age -- run --input sdk/data/account_age_input.json run + cargo run --example quickstart -- run -k 15 keygen + cargo run --example quickstart -- run --input sdk/data/quickstart_input.json run