workflows 0.7.2

A cli tool for creating a seemless workflow with remote and local git repos
@default:
    just --list

# Runs the project with cargo run
dev:
    cargo run

# Formats the project
fmt:
    cargo fmt

test:
    cargo test

# Runs test, fmt --check, and clippy. Ideal before commiting
check:
    cargo test
    cargo fmt --check
    cargo clippy

# Installs to system through cargo
install:
    cargo install --path .