kamino 1.1.1

Help manage a bunch of git repo clones by ensuring they are in sync with the remote.
Documentation
name: CI

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
    - name: Clone
      uses: actions/checkout@v2
    - name: Cache
      uses: actions/cache@v2
      with:
        path: |

          ~/.cargo/registry
          ~/.cargo/git
          ~/.rustup
          target
        key: ${{ runner.os }}-${{ runner.arch }}
    - name: Install Rust
      uses: dtolnay/rust-toolchain@stable
      with:
        components: rustfmt, clippy
    - name: Check
      run: cargo fmt -- --check
    - name: Build
      run: cargo build --verbose
    - name: Test
      run: cargo test
    - name: Clippy
      run: cargo clippy -- -Dwarnings