linked-markov 0.1.1

A minimal, thread-safe Markov chain implementation using reference-counted steps and weighted transitions
Documentation
name: CI

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

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Cache cargo registry
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
          key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
      - name: Build and test
        run: |
          cargo clippy --all-targets --all-features -- -D warnings
          cargo test --all