name: CI
on:
push:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo fmt -- --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo test
- run: cargo test --no-default-features
- run: cargo check --all-targets --all-features
- run: cargo check --no-default-features