summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2020-06-17 20:10:47 -0400
committerGitHub <noreply@github.com>2020-06-17 20:10:47 -0400
commit4c765547fb6ff0697d11d0162c0bd3d7f5655ce5 (patch)
treece6638a29c178650c18037df4214809d13b13702 /README.md
parentff759a078975de54ffee4383912834393bd9a0a3 (diff)
parent0b669acac07a2b325316a46cca01a5cb85eede3b (diff)
Merge pull request #6 from ojacobson/travis-githooks
Provide a git hook to automate tests.
Diffstat (limited to 'README.md')
-rw-r--r--README.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9cffd6d..ff7ce8f 100644
--- a/README.md
+++ b/README.md
@@ -38,3 +38,44 @@ the page as a suggestion.
Stable links provide the user with an index into this list. When you insert new
items, insert them at the end.
+
+## Git hooks
+
+This project includes a pre-commit and a pre-merge-commit hook to run tests.
+Using this hook is optional, but it'll catch a lot of minor breakage before
+Travis does.
+
+**Security note**: Enabling in-repository hooks means that anyone who can commit
+code to this repository can run that code on your computer. Only do this if
+you're willing to take that chance.
+
+To set this up:
+
+* Install additional Rust components:
+
+ ```bash
+ rustup component add clippy rustfmt
+ ```
+
+* Install `cargo-udeps`:
+
+ ```bash
+ cargo install cargo-udeps
+ ```
+
+* Configure Git to use these hooks:
+
+ ```bash
+ git config core.hooksPath .git-hooks
+ ```
+
+This only needs to be done once, and applies only to this project. To undo this,
+unset `core.hooksPath`:
+
+```bash
+git config --unset core.hooksPath
+```
+
+You can also temporarily suppress the hook with `git commit --no-verify`, if you
+have broken code you want to check in, or if the internet is unavailable for
+Cargo to download dependencies.