diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-03-12 22:49:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 22:49:46 +0000 |
commit | 6d60a49956facc63ab5e0ebac8eb15ab7347ea9a (patch) | |
tree | 0f9a38a42c5da8f083b7d7dcfd9b912177fe465a /.travis.yml | |
parent | c2e39085e3dfed6e4ea69ea30ed85dae1d81823c (diff) | |
download | alacritty-6d60a49956facc63ab5e0ebac8eb15ab7347ea9a.tar.gz alacritty-6d60a49956facc63ab5e0ebac8eb15ab7347ea9a.zip |
Run clippy on oldest supported version
Since there were some problems with clippy suggesting changes that were
not yet available in the oldest supported Rust compiler of Alacritty,
the clippy stage has been moved from stable to 1.37.0.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 8116ed75..f6454507 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,15 +30,15 @@ matrix: - name: "Clippy Linux" os: linux env: CLIPPY=true - rust: stable + rust: 1.37.0 - name: "Clippy OSX" os: osx env: CLIPPY=true - rust: stable + rust: 1.37.0 - name: "Clippy Windows" os: windows env: CLIPPY=true - rust: stable-x86_64-pc-windows-msvc + rust: 1.37.0-x86_64-pc-windows-msvc - name: "Rustfmt" os: linux env: RUSTFMT=true |