diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-11-10 18:47:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 15:47:49 +0000 |
commit | 9a851fdbb18e962801cd57eeec35d623f8ced55f (patch) | |
tree | f7f09dc74379d0557f819874ed9e08d6b5a5b083 | |
parent | dae014511dd18f141407b341e35058627471a9f6 (diff) | |
download | alacritty-9a851fdbb18e962801cd57eeec35d623f8ced55f.tar.gz alacritty-9a851fdbb18e962801cd57eeec35d623f8ced55f.zip |
Fix sr.ht clippy job
This commit brings back '--all-targets' parameter for clippy,
which was accidentally removed in dae0145.
-rw-r--r-- | .builds/freebsd.yml | 2 | ||||
-rw-r--r-- | .builds/linux.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 7e02e9cd..ec2e1616 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -24,7 +24,7 @@ tasks: - clippy: | cd alacritty rustup component add clippy - cargo clippy + cargo clippy --all-targets - oldstable: | cd alacritty rustup toolchain install --profile minimal 1.43.1 diff --git a/.builds/linux.yml b/.builds/linux.yml index b1243d91..90c31836 100644 --- a/.builds/linux.yml +++ b/.builds/linux.yml @@ -27,7 +27,7 @@ tasks: - clippy: | cd alacritty rustup component add clippy - cargo clippy + cargo clippy --all-targets - oldstable: | cd alacritty rustup toolchain install --profile minimal 1.43.1 |