svc-utils 0.8.0

Bunch of reusable utilities
Documentation
name: CI
on:
  push:
    branches: [main]
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  ci:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3.5.3
      - uses: dtolnay/rust-toolchain@1.70.0
        with:
          components: clippy, rustfmt
      - uses: Swatinem/rust-cache@v2.5.0
      - run: cargo check
      - run: cargo fmt --all --check
      - run: cargo clippy --all-features -- -D warnings
      - run: cargo build --release --all-features
      - run: cargo test --all-features --verbose