rustmann 0.8.0

Rust/Tokio client for Riemann
Documentation
name: Run tests
on:
  # Only run when merging to master, or open/synchronize/reopen a PR.
  push:
    branches:
      - master
  pull_request:

jobs:
  rustmann:
    runs-on: ubuntu-latest
    if: "!contains(github.event.head_commit.message, '[skip ci]')"
    strategy:
      matrix:
        build: [stable, nightly]
        include:
          - build: stable
            rust: stable
          - build: nightly
            rust: nightly
    steps:
      - uses: actions/checkout@v2
      - uses: arduino/setup-protoc@v1
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: ${{ matrix.rust }}
          components: clippy,rustfmt
      - run: cargo fmt -- --check
      - run: cargo install cargo-all-features
      - run: cargo build-all-features
      - run: cargo test-all-features
      - run: cargo clippy --all-features