Skip to content

Add aligned allocation and documentation #3

Add aligned allocation and documentation

Add aligned allocation and documentation #3

Workflow file for this run

name: CI
on:
push:
branches: ["trunk"]
pull_request:
jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add rustfmt
- run: cargo fmt --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo test
msrv:
name: MSRV (1.31)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.31"
- run: cargo +1.31 check