Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 579 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (20 loc) · 579 Bytes

Contributing Guidelines

Development

walk(1) is written in Go, and it's assumed that you have a working Go 1.7+ environment.

Tests

There are multiple test suites that are exercised. The full suite requires that walk is installed:

$ go install .
$ walk clean && walk test/unit && walk test/integration

The Go specific tests can be ran with:

go test ./...

Releasing

Bump the version number in VERSION, update CHANGELOG.md, then run:

$ walk -v version.go
$ git commit -m "Bump version"
$ walk -v release