88 - try
99 # Don't run Clippy tests, when only text files were modified
1010 paths-ignore :
11- - ' COPYRIGHT'
12- - ' LICENSE-*'
13- - ' **.md'
14- - ' **.txt'
11+ - " COPYRIGHT"
12+ - " LICENSE-*"
13+ - " **.md"
14+ - " **.txt"
1515 pull_request :
1616 # Don't run Clippy tests, when only text files were modified
1717 paths-ignore :
18- - ' COPYRIGHT'
19- - ' LICENSE-*'
20- - ' **.md'
21- - ' **.txt'
18+ - " COPYRIGHT"
19+ - " LICENSE-*"
20+ - " **.md"
21+ - " **.txt"
2222
2323env :
2424 RUST_BACKTRACE : 1
25- CARGO_TARGET_DIR : ' ${{ github.workspace }}/target'
25+ CARGO_TARGET_DIR : " ${{ github.workspace }}/target"
2626 NO_FMT_TEST : 1
2727 CARGO_INCREMENTAL : 0
2828 RUSTFLAGS : -D warnings
@@ -39,37 +39,37 @@ jobs:
3939 runs-on : ubuntu-latest
4040
4141 steps :
42- # Setup
43- - name : Checkout
44- uses : actions/checkout@v4
42+ # Setup
43+ - name : Checkout
44+ uses : actions/checkout@v4
4545
46- - name : Install toolchain
47- run : rustup show active-toolchain
46+ - name : Install toolchain
47+ run : rustup show active-toolchain
4848
49- # Run
50- - name : Build
51- run : cargo build --tests --features internal
49+ # Run
50+ - name : Build
51+ run : cargo build --tests --features internal
5252
53- - name : Test
54- run : cargo test --features internal
53+ - name : Test
54+ run : cargo test --features internal
5555
56- - name : Test clippy_lints
57- run : cargo test --features internal
58- working-directory : clippy_lints
56+ - name : Test clippy_lints
57+ run : cargo test
58+ working-directory : clippy_lints
5959
60- - name : Test clippy_utils
61- run : cargo test
62- working-directory : clippy_utils
60+ - name : Test clippy_utils
61+ run : cargo test
62+ working-directory : clippy_utils
6363
64- - name : Test rustc_tools_util
65- run : cargo test
66- working-directory : rustc_tools_util
64+ - name : Test rustc_tools_util
65+ run : cargo test
66+ working-directory : rustc_tools_util
6767
68- - name : Test clippy_dev
69- run : cargo test
70- working-directory : clippy_dev
68+ - name : Test clippy_dev
69+ run : cargo test
70+ working-directory : clippy_dev
7171
72- - name : Test clippy-driver
73- run : .github/driver.sh
74- env :
75- OS : ${{ runner.os }}
72+ - name : Test clippy-driver
73+ run : .github/driver.sh
74+ env :
75+ OS : ${{ runner.os }}
0 commit comments