8
8
- try
9
9
# Don't run Clippy tests, when only text files were modified
10
10
paths-ignore :
11
- - ' COPYRIGHT'
12
- - ' LICENSE-*'
13
- - ' **.md'
14
- - ' **.txt'
11
+ - " COPYRIGHT"
12
+ - " LICENSE-*"
13
+ - " **.md"
14
+ - " **.txt"
15
15
pull_request :
16
16
# Don't run Clippy tests, when only text files were modified
17
17
paths-ignore :
18
- - ' COPYRIGHT'
19
- - ' LICENSE-*'
20
- - ' **.md'
21
- - ' **.txt'
18
+ - " COPYRIGHT"
19
+ - " LICENSE-*"
20
+ - " **.md"
21
+ - " **.txt"
22
22
23
23
env :
24
24
RUST_BACKTRACE : 1
25
- CARGO_TARGET_DIR : ' ${{ github.workspace }}/target'
25
+ CARGO_TARGET_DIR : " ${{ github.workspace }}/target"
26
26
NO_FMT_TEST : 1
27
27
CARGO_INCREMENTAL : 0
28
28
RUSTFLAGS : -D warnings
@@ -39,37 +39,37 @@ jobs:
39
39
runs-on : ubuntu-latest
40
40
41
41
steps :
42
- # Setup
43
- - name : Checkout
44
- uses : actions/checkout@v4
42
+ # Setup
43
+ - name : Checkout
44
+ uses : actions/checkout@v4
45
45
46
- - name : Install toolchain
47
- run : rustup show active-toolchain
46
+ - name : Install toolchain
47
+ run : rustup show active-toolchain
48
48
49
- # Run
50
- - name : Build
51
- run : cargo build --tests --features internal
49
+ # Run
50
+ - name : Build
51
+ run : cargo build --tests --features internal
52
52
53
- - name : Test
54
- run : cargo test --features internal
53
+ - name : Test
54
+ run : cargo test --features internal
55
55
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
59
59
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
63
63
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
67
67
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
71
71
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