Add into_par_iter() implementations for Vec<T>, Box<[T]> and [T; N]. #174
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: [push, pull_request] | |
name: Build benchmarks | |
jobs: | |
build_benches: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
rust: | |
- stable | |
- beta | |
- nightly | |
- 1.80.0 # MSRV for benchmarks | |
include: | |
- test_features: "" | |
- all_test_features: "" | |
- rust: nightly | |
test_features: ",nightly_tests" | |
all_test_features: "--features=nightly_tests" | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
env: | |
RUSTFLAGS: "-D warnings" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Build (no default features) | |
run: cargo bench --no-run --verbose --all --no-default-features ${{ matrix.all_test_features }} | |
- name: Build (log feature) | |
run: cargo bench --no-run --verbose --all --no-default-features --features=log${{ matrix.test_features }} | |
- name: Build (log_parallelism feature) | |
run: cargo bench --no-run --verbose --all --no-default-features --features=log_parallelism${{ matrix.test_features }} |