once-arc 0.1.1

Initialize-once Arc<T> containers with zero-cost reads
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v6
    - name: Build
      run: RUSTFLAGS="-D warnings" cargo build --tests --verbose
    - name: Run tests
      run: RUSTFLAGS="-D warnings" cargo test --verbose
    - name: Run Clippy
      run: cargo clippy --tests --verbose -- -D warnings
    - name: Check format
      run: cargo fmt --check --all