ref_mut_stack 0.1.0

Iteratively stack mutable references
Documentation
name: Continuous Integration

on:
  workflow_dispatch:
  push:

jobs:

  main_stable:
    name: Rust stable
    uses: ./.github/workflows/_build.yml
    with:
      rust_toolchain: stable
      with_rustfmt: true
      with_clippy: true
      with_audit: true
      with_doc: true

  main_1_89_0:
    name: Rust 1.89.0
    uses: ./.github/workflows/_build.yml
    with:
      rust_toolchain: 1.89.0
      pre_build_script: ./scripts/msrv_pin_dependencies.sh

  main_nightly:
    name: Rust nightly
    uses: ./.github/workflows/_build.yml
    with:
      rust_toolchain: nightly
      with_miri: true