atomic-matrix 0.3.0

A lock-free, high end allocator primitive for high-performance IPC.
Documentation
name: Atomic Matrix CI

on:
    push:
        branches: [ "main", "develop" ]
    pull_request:
        branches: [ "main" ]

env:
    RUST_BACKTRACE: full
    CARGO_TERM_COLOR: always

jobs:
    build_and_test:
        runs-on: ubuntu-latest

        steps:
            - uses: actions/checkout@v4

            - name: Set up Rust
              uses: dtolnay/rust-toolchain@stable

            - name: Build
              run: cargo build --verbose

            - name: Run Standard Tests
              run: cargo test --verbose --lib