rs-consul 0.13.0

This crate provides access to a set of strongly typed apis to interact with consul (https://www.consul.io/)
Documentation
name: Lint

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  lint:
    runs-on: "ubuntu-latest"
    container: rust:1.90

    steps:
      - uses: actions/checkout@v2

      - name: Install Rust Format
        run: rustup component add rustfmt

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

      - name: Install Rust Linter
        run: rustup component add clippy

      - name: Lint Rust
        run: cargo clippy -- -D warnings

      - name: Install Cargo Sort Check
        run: cargo install cargo-sort

      - name: Lint Cargo.toml
        run: cargo sort -c .