Skip to content

array_chunks (performance feature), alloc improvements, code modularisation. #16

array_chunks (performance feature), alloc improvements, code modularisation.

array_chunks (performance feature), alloc improvements, code modularisation. #16

Workflow file for this run

name: Run tests on PR
on:
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Rust (nightly)
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
override: true
- name: Run tests
run: |
cargo clippy --all-targets --all-features -- -D warnings
cargo test --locked
cargo fmt --all -- --check