slog 2.8.2

Structured, extensible, composable logging for Rust
Documentation
# Checks spelling with typos
# This has very few false positives, only checking for known misspellings (similar to codespell).
# This action is based on https://github.com/crate-ci/typos/blob/master/docs/github-action.md
name: Check Spelling
on: [push, pull_request]

env:
  CLICOLOR: 1

permissions:
  contents: read

jobs:
  typos:
    # Only run on PRs if the source branch is on someone else's repo
    if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}

    name: Check spelling with typos
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Run typos (pinned version)
      uses: crate-ci/typos@v1.35.1