Skip to content

Add multisignature scheme #14

Add multisignature scheme

Add multisignature scheme #14

Workflow file for this run

on: [pull_request]
name: Continuous integration
jobs:
analyze:
name: Code Analysis
uses: dusk-network/.github/.github/workflows/code-analysis.yml@main
with:
clippy_default: false
clippy_args: --features=rkyv/size_32,double,var_generator
dusk_analyzer:
name: Dusk Analyzer
uses: dusk-network/.github/.github/workflows/dusk-analysis.yml@main
build_benches:
name: Build Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: cargo bench --no-run --features=double,var_generator
test_nightly_std:
name: Nightly tests std
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=double,var_generator
test_nightly_std_double_compiles:
name: Nightly std feature=double tests compile
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=double --no-run
test_nightly_std_var_generator_compiles:
name: Nightly std feature=var_generator tests compile
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=var_generator --no-run
test_nightly_no_std:
name: Nightly tests no_std
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --no-default-features --features=double,var_generator