cargo-workflows-0.2.0 has been yanked.
Cargo workflows
A library for running workflows.
Usage
First, install the crate using cargo install cargo-workflows.
Second, initialize a new workflows.toml file using cargo workflows init.
Third, open the file and you should see:
# "default" is the default workflow
[]
# Commands to run
[]
= [ "cargo", "clippy" ]
= [ "cargo", "build", "--release" ]
= [ "cargo", "run", "--release" ]
# Environment variables
[]
= "true"
= "42"
= "50"