Merge pull request #268 from dusk-network/feature-serde-dep-on-alloc #520
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
name: Continuous integration | |
jobs: | |
code_analysis: | |
name: Code Analysis | |
uses: dusk-network/.github/.github/workflows/code-analysis.yml@main | |
with: | |
clippy_default: false | |
clippy_args: --release --features=alloc -- -D warnings | |
dusk_analyzer: | |
name: Dusk Analyzer | |
uses: dusk-network/.github/.github/workflows/dusk-analysis.yml@main | |
test_core: | |
name: test core | |
uses: dusk-network/.github/.github/workflows/run-tests.yml@main | |
with: | |
test_flags: -p phoenix-core --features=alloc,serde | |
test_core_no_default_serde: | |
name: test core no-default-features serde | |
uses: dusk-network/.github/.github/workflows/run-tests.yml@main | |
with: | |
test_flags: -p phoenix-core --no-default-features --features=serde | |
test_core_rkyv: | |
name: test core rkyv compiles | |
uses: dusk-network/.github/.github/workflows/run-tests.yml@main | |
with: | |
test_flags: -p phoenix-core --features=rkyv-impl,alloc --no-run | |
test_circuits: | |
name: test cirucits | |
uses: dusk-network/.github/.github/workflows/run-tests.yml@main | |
with: | |
test_flags: -p phoenix-circuits | |
test_circuits_no_default: | |
name: test cirucits no-default-features | |
uses: dusk-network/.github/.github/workflows/run-tests.yml@main | |
with: | |
test_flags: -p phoenix-circuits --no-default-features --features=rkyv-impl,rkyv/size_16 --no-run |