name: build
on:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- run: cargo test
# build for no_std to catch errors
- run: cargo build --features no_std
- run: cargo test --features no_std
- run: cargo +nightly test --features nightly