8
8
pull_request :
9
9
# Only run on paths, that get checked by the clippy_dev tool
10
10
paths :
11
- - ' CHANGELOG.md'
12
- - ' README.md'
13
- - ' **.stderr'
14
- - ' **.rs'
11
+ - " CHANGELOG.md"
12
+ - " README.md"
13
+ - " **.stderr"
14
+ - " **.rs"
15
15
16
16
env :
17
17
RUST_BACKTRACE : 1
@@ -21,35 +21,35 @@ jobs:
21
21
runs-on : ubuntu-latest
22
22
23
23
steps :
24
- # Setup
25
- - name : Checkout
26
-
24
+ # Setup
25
+ - name : Checkout
26
+
27
27
28
- - name : remove toolchain file
29
- run : rm rust-toolchain
28
+ - name : remove toolchain file
29
+ run : rm rust-toolchain
30
30
31
- - name : rust-toolchain
32
- uses :
actions-rs/[email protected]
33
- with :
34
- toolchain : nightly
35
- target : x86_64-unknown-linux-gnu
36
- profile : minimal
37
- components : rustfmt
38
- default : true
31
+ - name : rust-toolchain
32
+ uses :
actions-rs/[email protected]
33
+ with :
34
+ toolchain : nightly
35
+ target : x86_64-unknown-linux-gnu
36
+ profile : minimal
37
+ components : rustfmt
38
+ default : true
39
39
40
- # Run
41
- - name : Build
42
- run : cargo build --features deny-warnings
43
- working-directory : clippy_dev
40
+ # Run
41
+ - name : Build
42
+ run : cargo build --features deny-warnings
43
+ working-directory : clippy_dev
44
44
45
- - name : Test limit_stderr_length
46
- run : cargo dev limit_stderr_length
45
+ - name : Test limit_stderr_length
46
+ run : cargo dev limit_stderr_length
47
47
48
- - name : Test update_lints
49
- run : cargo dev update_lints --check
48
+ - name : Test update_lints
49
+ run : cargo dev update_lints --check
50
50
51
- - name : Test fmt
52
- run : cargo dev fmt --check
51
+ - name : Test fmt
52
+ run : cargo dev fmt --check
53
53
54
54
# These jobs doesn't actually test anything, but they're only used to tell
55
55
# bors the build completed, as there is no practical way to detect when a
0 commit comments