Skip to content

Commit a3a206c

Browse files
committed
ci: Don't run the --fix test on all of Clippy
Also -Zunstable-options isn't required anymore
1 parent 24111ec commit a3a206c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/clippy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ jobs:
5151
- name: Build
5252
run: cargo build --features deny-warnings,internal-lints
5353

54-
- name: Test "--fix -Zunstable-options"
55-
run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix -Zunstable-options
54+
- name: Test "--fix"
55+
run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix
56+
working-directory: clippy_workspace_tests
5657

5758
- name: Test
5859
run: cargo test --features deny-warnings,internal-lints

.github/workflows/clippy_bors.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,9 @@ jobs:
113113
- name: Build
114114
run: cargo build --features deny-warnings,internal-lints
115115

116-
- name: Test "--fix -Zunstable-options"
117-
run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix -Zunstable-options
116+
- name: Test "--fix"
117+
run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix
118+
working-directory: clippy_workspace_tests
118119

119120
- name: Test
120121
run: cargo test --features deny-warnings,internal-lints

0 commit comments

Comments
 (0)