File tree 2 files changed +5
-19
lines changed
2 files changed +5
-19
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,6 @@ general:
5
5
- /binary-.*/
6
6
7
7
jobs :
8
- lint :
9
- docker :
10
- - image : circleci/rust:latest
11
- steps :
12
- - checkout
13
- - run : |
14
- rustup component add clippy
15
- cargo clippy --all -- --deny warnings
16
- format :
17
- docker :
18
- - image : circleci/rust:latest
19
- steps :
20
- - checkout
21
- - run : cargo fmt -- --check
22
8
build :
23
9
docker :
24
10
- image : autozimu/languageclientneovim
Original file line number Diff line number Diff line change @@ -2,21 +2,21 @@ all: release
2
2
3
3
dev : build fmt clippy vint
4
4
5
- ci : vint python-lint test integration-test
6
- cargo fmt -- --check
5
+ ci : vint python-lint check-fmt-and-clippy test integration-test
7
6
8
7
check :
9
8
cargo check
10
9
10
+ check-fmt-and-clippy : check
11
+ cargo fmt -- --check
12
+ cargo clippy --all -- --deny warnings
13
+
11
14
build :
12
15
cargo build
13
16
14
17
fmt :
15
18
cargo fmt
16
19
17
- clippy :
18
- cargo clippy
19
-
20
20
vint :
21
21
vint autoload plugin
22
22
You can’t perform that action at this time.
0 commit comments