Add ContiguousMemoryStorage::reserve
and friends
#42
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
name: Rust | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update nightly && rustup default nightly | |
- name: Build default | |
run: cargo build --verbose | |
- name: Build no_std all features | |
run: cargo build --verbose --no-default-features --features no_std,debug,ptr_metadata,error_in_core | |
- name: Build all features | |
run: cargo build --verbose --no-default-features --features debug,ptr_metadata,error_in_core | |
- name: Run tests | |
run: cargo test --verbose --features ptr_metadata |