caseify 0.1.3

A CLI tool to convert strings between different cases
Documentation
name: Rustfmt

on: [pull_request, push]

env:
    CARGO_TERM_COLOR: always

jobs:
    fmt:
        runs-on: ubuntu-latest

        steps:
            - name: Checkout repository
              uses: actions/checkout@v4

            - name: Install Rust
              uses: actions-rs/toolchain@v1
              with:
                toolchain: nightly
                override: true
                components: rustfmt

            - name: Check formatting
              run: cargo fmt -- --check