samurai 0.1.5

Very early stage user-space P2P network protocol.
Documentation
name: Rust

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
      
    - name: Cache cargo registry
      uses: actions/cache@v1
      with:
        path: ~/.cargo/registry
        key: cargo-registry
    - name: Cache cargo index
      uses: actions/cache@v1
      with:
        path: ~/.cargo/git
        key: cargo-index
    - name: Cache cargo build
      uses: actions/cache@v1
      with:
        path: target
        key: cargo-build-target

    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose