We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e3776 commit 75677e7Copy full SHA for 75677e7
.pre-commit-config.yaml
@@ -4,7 +4,25 @@ repos:
4
hooks:
5
- id: check
6
name: cargo check
7
- entry: cargo check --
+ entry: cargo +stable check --all --tests --
8
+ language: system
9
+ types: [rust]
10
+ pass_filenames: false
11
+ - id: check-msrv-all-features
12
+ name: cargo check (all features)
13
+ entry: cargo +stable check --all --tests --all-features --
14
15
16
17
+ - id: check-msrv
18
+ name: cargo check MSRV
19
+ entry: cargo +1.70 check --all --tests --
20
21
22
23
24
+ name: cargo check MSRV (all features)
25
+ entry: cargo +1.70 check --all --tests --all-features --
26
language: system
27
types: [rust]
28
pass_filenames: false
0 commit comments