Skip to content

Merge pull request #1 from numpy1314/no_std #1

Merge pull request #1 from numpy1314/no_std

Merge pull request #1 from numpy1314/no_std #1

Workflow file for this run

name: Check
on:
push:
branches: [ no_std ]
pull_request:
branches: [ no_std ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-features -- -D warnings
- name: Build
run: cargo build --all-features