Skip to content

add missing const generic types; fix no-std #6

add missing const generic types; fix no-std

add missing const generic types; fix no-std #6

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
RUSTFLAGS: -Dwarnings
jobs:
test:
name: Rust stable
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo check
- run: cargo test
- run: cargo clippy
- run: cargo fmt