caprice 0.3.3

A REPL for Rust projects featuring an easy to use, zsh like autocomplete feature.
Documentation
name: Rust

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Check Formatting
      run: cargo fmt --all -- --check
    - name: Check lint
      run: cargo clippy -- --deny clippy::all
    - name: Build
      run: cargo build
    - name: Run tests
      run: cargo test