diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-06-17 19:20:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-17 19:20:16 -0400 |
| commit | 5257b85551459098b8e74cb14e6294a4f1a4226e (patch) | |
| tree | f1e9b5ad7d543a72a54cae4fb67a1805db08402e /.travis.yml | |
| parent | fcee86871b41ebaba772539181611da16de49147 (diff) | |
| parent | f43bcb502435ccd99e163671204371dd8b62024f (diff) | |
Merge pull request #5 from ojacobson/missing-rustfmt-deps
Add missing dependencies for rustfmt Travis pass.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 4292ca5..40cd744 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,18 @@ language: rust +# 2020-06-17 - nightly hasn't had rustfmt since 2020-06-10, so builds fail on +# that toolchain. We want to use it as far as is possible, though. rust: - nightly + - nightly-2020-06-10 + +jobs: + allow_failures: + - rust: nightly cache: cargo install: - - rustup component add clippy + - rustup component add clippy rustfmt - cargo install cargo-udeps - cargo build |
