Skip to content

Commit dae0145

Browse files
authored
Fix github actions clippy job
1 parent 78f6cc4 commit dae0145

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .builds/freebsd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tasks:
2424
- clippy: |
2525
cd alacritty
2626
rustup component add clippy
27-
cargo clippy --all-targets
27+
cargo clippy
2828
- oldstable: |
2929
cd alacritty
3030
rustup toolchain install --profile minimal 1.43.1

Diff for: .builds/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tasks:
2727
- clippy: |
2828
cd alacritty
2929
rustup component add clippy
30-
cargo clippy --all-targets
30+
cargo clippy
3131
- oldstable: |
3232
cd alacritty
3333
rustup toolchain install --profile minimal 1.43.1

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
- name: Install Clippy
3636
run: rustup component add clippy
3737
- name: Lint
38-
run: cargo clippy --all-targets --manifest-path ./alacritty/Cargo.toml --no-default-features --features "x11 wayland"
38+
run: cargo clippy --all-targets

0 commit comments

Comments
 (0)