Skip to content

Update poseidon to v0.39.0 #45

Update poseidon to v0.39.0

Update poseidon to v0.39.0 #45

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,multisig,zk
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,zk
test_nightly:
name: Nightly tests
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=double,var_generator,multisig,zk
test_nightly_double_compiles:
name: Nightly feature=double tests compile
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=double --no-run
test_nightly_var_generator_compiles:
name: Nightly 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_multisig_compiles:
name: Nightly feature=multisig tests compile
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=multisig --no-run
test_nightly_gadgets_compile:
name: Nightly feature=zk tests compile
uses: dusk-network/.github/.github/workflows/run-tests.yml@main
with:
test_flags: --features=double,var_generator,zk --no-run