feat: Add equivalent trait support for flexible key lookups #138
Workflow file for this run
This file contains hidden or 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
| name: Test | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| TARGET: thumbv6m-none-eabi | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - rust: stable | |
| features: std | |
| - rust: stable | |
| features: serde | |
| - rust: beta | |
| features: | |
| - rust: nightly | |
| features: | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| - name: Run tests | |
| run: cargo test --verbose --features "${{ matrix.features }}" | |
| - name: Run tests in release mode | |
| run: cargo test --release --verbose --features "${{ matrix.features }}" | |