Skip to content

fix: invalid allocation requests #211

fix: invalid allocation requests

fix: invalid allocation requests #211

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
test:
name: test ${{ matrix.toolchain }} ${{ matrix.profile.name }} ${{ matrix.crates.name }} ${{ matrix.crates.feat }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=${{ matrix.crates.name }}/Cargo.toml ${{ matrix.profile.flag }} --no-default-features --features=${{ matrix.crates.feat }}
strategy:
fail-fast: false
matrix:
toolchain:
- 1.70.0
- stable
- beta
- nightly
crates:
- {name: ciborium-ll}
- {name: ciborium}
- {name: ciborium, feat: std}
- {name: ciborium-io}
- {name: ciborium-io, feat: alloc}
- {name: ciborium-io, feat: std}
profile:
- {name: debug}
- {name: release, flag: --release}