Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,18 @@ Mutation testing is also especially interesting for comparing automatically gene

## <a name="how-do-i-use-go-mutesting"></a>How do I use go-mutesting?

go-mutesting includes a binary which is go-getable.
### Install

**Go version < 1.16:**

```bash
GO111MODULE=on go get github.com/zimmski/go-mutesting/cmd/go-mutesting@latest
```

**Go 1.16+:**

```bash
go get -t -v github.com/zimmski/go-mutesting/...
go install github.com/zimmski/go-mutesting/cmd/go-mutesting@latest
```

The binary's help can be invoked by executing the binary without arguments or with the `--help` argument.
Expand Down