run-cli 0.0.53

A CLI to help you run any command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
> This example is using a _literate Runfile_.
> [Learn more]../../user-guide/runfile.md#literate-runfiles.

This example shows how you can run your Go tests and program in tmux mode.

```toml
mode = "parallel"

[[run]]
cmd = ["go", "test", "./..."]

[[run]]
cmd = ["go", "run", "."]

```