Skip to content

Commit

Permalink
Auto merge of rust-lang#6504 - matthiaskrgr:cifix, r=matthiaskrgr
Browse files Browse the repository at this point in the history
fix ci on master branch; run the --fix test in the correct directory

Turned out the --fix test was run in the wrong directory.

*Please write a short comment explaining your change (or "none" for internal only changes)*
changelog: none
  • Loading branch information
bors committed Dec 24, 2020
2 parents 5c98135 + 2218dd6 commit 02399f4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,16 @@ jobs:
- name: Build
run: cargo build --features deny-warnings,internal-lints

- name: Test "--fix -Zunstable-options"
run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix -Zunstable-options

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

- name: Test clippy_lints
run: cargo test --features deny-warnings,internal-lints
working-directory: clippy_lints

- name: Test --fix -Zunstable-options
run: cargo run --bin cargo-clippy -- clippy --fix -Zunstable-options
working-directory: clippy_lints

- name: Test rustc_tools_util
run: cargo test --features deny-warnings
working-directory: rustc_tools_util
Expand Down

0 comments on commit 02399f4

Please sign in to comment.