noctisroll 0.2.2

A modern, modular TRPG dice rolling system implementing the OneDice standard
Documentation
name: Code Lint
on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main
jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Code Spell Check
        uses: crate-ci/typos@v1.45.1
      - name: Cargo Clippy
        run: cargo clippy --all-targets --all-features -- -D warnings
      - name: Rust Format Check
        run: cargo fmt --all -- --check