clap_autocomplete 0.4.2

Easy to integrate shell completion for Clap. Finds the user's shell and puts completion files in the appropriate locations.
Documentation
on:
    push:

env:
    CARGO_TERM_COLOR: always

jobs:
    check:
        runs-on: ubuntu-latest
        steps:
            - name: Checking out sources
              uses: actions/checkout@v3
            - name: Installing Rust toolchain
              run: rustup install stable
            - uses: Swatinem/rust-cache@v2
            - name: Checking formatting
              run: cargo fmt --check
            - name: Checking lints with no default features
              run: cargo clippy --no-default-features --all-targets -- -D warnings
            - name: Checking lints with all features
              run: cargo clippy --all-features --all-targets -- -D warnings
            - name: Checking doc references
              uses: Icelk/rustdoc-link-check@v2
              with:
                  private: true
            - name: Testing project
              run: cargo test