slog-extlog 8.1.0

Object-based logging and statistics tracking through logs
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build (all features)
      run: cargo clippy --verbose --all-targets --all-features --all -- -D warnings
    - name: Build (no features)
      run: cargo clippy --verbose --all-targets --no-default-features --all -- -D warnings
    - name: Run tests (all features)
      run: cargo test --verbose --all --all-features
    - name: Run tests (no features)
      run: cargo test --verbose --all --no-default-features