Skip to content

FIXME 1.70.0 clippy fixes #531

FIXME 1.70.0 clippy fixes

FIXME 1.70.0 clippy fixes #531

name: CI - min test matrix
on: [pull_request, push]
jobs:
min_test_matrix:
name: Run minimal test matrix (Rust ${{ matrix.rust }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: -D warnings
strategy:
fail-fast: false # If one job fails, run remaining jobs.
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
toolchain:
- stable
- beta
- nightly
- 1.60.0 # MSRV
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Test all crates
run: cargo test --all --verbose --features "use_serde"