scoped-ref 0.1.1

References with safe runtime-checked lifetimes.
Documentation
name: ci

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

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    name: check and test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@nightly
        with:
          components: clippy, rustfmt
      - run: cargo fmt --all --check
      - run: cargo test --all-features
      - run: cargo clippy --all-targets --all-features
      - run: cargo test --all-features