Skip to content

add real no-std support; rm beta and nightly because of clippy #2

add real no-std support; rm beta and nightly because of clippy

add real no-std support; rm beta and nightly because of clippy #2

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: ${{matrix.rust}}
- run: cargo check
- run: cargo test
- run: cargo clippy
- run: cargo fmt