date_time 2.2.0

Date_Time is a high-level rust library for use in situations where precision beyond seconds is not necessary.
Documentation
name: Code Style

on:
  push:
    branches:
      - master
      - staging
      - trying
      - staging.tmp
      - trying.tmp
  pull_request:

jobs:
  code-style:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - name: Check Formatting
        run: cargo fmt -- --check
      - name: Lint
        run: cargo clippy -- -D warnings