mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
Fix github actions clippy job
This commit is contained in:
parent
78f6cc4086
commit
dae014511d
3 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ tasks:
|
||||||
- clippy: |
|
- clippy: |
|
||||||
cd alacritty
|
cd alacritty
|
||||||
rustup component add clippy
|
rustup component add clippy
|
||||||
cargo clippy --all-targets
|
cargo clippy
|
||||||
- oldstable: |
|
- oldstable: |
|
||||||
cd alacritty
|
cd alacritty
|
||||||
rustup toolchain install --profile minimal 1.43.1
|
rustup toolchain install --profile minimal 1.43.1
|
||||||
|
|
|
@ -27,7 +27,7 @@ tasks:
|
||||||
- clippy: |
|
- clippy: |
|
||||||
cd alacritty
|
cd alacritty
|
||||||
rustup component add clippy
|
rustup component add clippy
|
||||||
cargo clippy --all-targets
|
cargo clippy
|
||||||
- oldstable: |
|
- oldstable: |
|
||||||
cd alacritty
|
cd alacritty
|
||||||
rustup toolchain install --profile minimal 1.43.1
|
rustup toolchain install --profile minimal 1.43.1
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -35,4 +35,4 @@ jobs:
|
||||||
- name: Install Clippy
|
- name: Install Clippy
|
||||||
run: rustup component add clippy
|
run: rustup component add clippy
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: cargo clippy --all-targets --manifest-path ./alacritty/Cargo.toml --no-default-features --features "x11 wayland"
|
run: cargo clippy --all-targets
|
||||||
|
|
Loading…
Reference in a new issue