Skip to content

Don't check state.is_tracing() in deref, clone, new and new_cyclic #31

Don't check state.is_tracing() in deref, clone, new and new_cyclic

Don't check state.is_tracing() in deref, clone, new and new_cyclic #31

Workflow file for this run

name: Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- name: Build (no features)
run: cargo build --no-default-features -F pedantic-debug-assertions --verbose --workspace
- name: Run tests (no features)
run: cargo test --no-default-features -F pedantic-debug-assertions --verbose --workspace
- name: Build (default features)
run: cargo build -F pedantic-debug-assertions --verbose --workspace
- name: Run tests (default features)
run: cargo test -F pedantic-debug-assertions --verbose --workspace
- name: Build (feature full)
run: cargo build -F full,pedantic-debug-assertions --verbose --workspace
- name: Run tests (feature full)
run: cargo test -F full,pedantic-debug-assertions --verbose --workspace
- name: Build (every feature)
run: cargo build --all-features --verbose --workspace
- name: Run tests (every feature)
run: cargo test --all-features --verbose --workspace