monitord 0.23.0

monitord ... know how happy your systemd is! 😊
Documentation
name: RustClippy CI

on: [push, pull_request]

jobs:
  clippy:
    name: Rust Clippy CI on ${{matrix.os}}
    runs-on: ${{ matrix.os }}

    strategy:
      matrix:
        os: [ubuntu-latest]

    steps:
      - uses: actions/checkout@v6.0.2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable

      - name: Cargo clippy
        uses: actions-rs/cargo@v1
        with:
          command: clippy