Skip to content

Implemented DoubleEndedIterator for the iterator types, fixed some bu… #14

Implemented DoubleEndedIterator for the iterator types, fixed some bu…

Implemented DoubleEndedIterator for the iterator types, fixed some bu… #14

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: |
cargo clippy --all-targets
cargo clippy --all-targets --all-features
cargo clippy --no-default-features
cargo clippy --no-default-features --features="alloc"
cargo clippy --all-features -- -W clippy::unwrap_used -W clippy::expect_used
- name: Build
run: |
cargo build --verbose
cargo build --verbose --all-features
cargo build --verbose --no-default-features
cargo build --verbose --no-default-features --features="alloc"
- name: Run tests
run: |
cargo test
cargo test --all-features
cargo test --examples