diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-06-17 23:45:48 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-06-17 23:58:31 -0400 |
| commit | e344f6c6245fe1121976b407a989af86c7453dad (patch) | |
| tree | 49f0290591c0c48d69607656db3a6f1f10323e7a /.travis.yml | |
| parent | 3ccaa5f22c66874b274506fe784939806fb0f2db (diff) | |
Extracted checks into a tools directory.
Having the checks duplicated between .git-hooks and .travis.yml was a
recipe for them to diverge eventually. This is somewhat tidier, and
creates a clear convention for any future tools-like scripts.
I didn't do the same to install steps, as they're a lot more sensitive to the
specific environment - Travis requires different things from Github, which
requires different things from CircleCI, which requires different things from a
local environment.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 1b8bcad..db31059 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,5 @@ install: - cargo install cargo-udeps - cargo build -# dup of the list in .git-hooks/pre-commit script: - - cargo build --locked - - cargo test - - cargo fmt -- --check - - cargo clippy -- --deny warnings - - cargo udeps --locked --all-targets + - tools/checks |
