This repository was archived by the owner on Dec 29, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 9
9
rust :
10
10
- nightly
11
11
install :
12
+ - rustup component add rustfmt
12
13
# Required for Racer autoconfiguration
13
14
- rustup component add rust-src
14
15
- rustup component add rust-analysis
15
16
script :
16
17
# Since the rls-* subcrates use crates.io-based dependencies of themselves it
17
18
# makes sense to test them in isolation rather than just RLS itself
18
- - (cd rls-analysis && cargo test -v)
19
- - (cd rls-blacklist && cargo test -v)
20
- - (cd rls-data && cargo test -v)
21
- - (cd rls-rustc && cargo test -v)
22
- - (cd rls-span && cargo test -v)
23
- - (cd rls-vfs && cargo test -v)
19
+ - (cd rls-analysis && cargo test -v && cargo fmt -- --check)
20
+ - (cd rls-blacklist && cargo test -v && cargo fmt -- --check)
21
+ - (cd rls-data && cargo test -v && cargo fmt -- --check)
22
+ - (cd rls-rustc && cargo test -v && cargo fmt -- --check)
23
+ - (cd rls-span && cargo test -v && cargo fmt -- --check)
24
+ - (cd rls-vfs && cargo test -v && cargo fmt -- --check)
25
+ - cargo fmt -- --check
24
26
- cargo build -v
25
27
- cargo test -v
26
28
- cargo test test_tooltip_std -- --ignored
You can’t perform that action at this time.
0 commit comments