File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 34
34
- name : Install krb5
35
35
run : |
36
36
sudo apt install -y libkrb5-dev
37
+ - name : Install cargo-all-features
38
+ run : cargo install cargo-all-features
37
39
- name : Build code
38
- run : cargo build - -all-features
40
+ run : cargo build-all-features
39
41
test :
40
42
needs : [build]
41
43
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -58,3 +58,6 @@ assert_matches = "1.5.0"
58
58
tempfile = " 3.6.0"
59
59
rcgen = { version = " 0.12.1" , features = [" default" , " x509-parser" ] }
60
60
serial_test = " 3.0.0"
61
+
62
+ [package .metadata .cargo-all-features ]
63
+ skip_optional_dependencies = true
Original file line number Diff line number Diff line change 12
12
cargo clippy --all-features --no-deps -- -D clippy::all
13
13
14
14
build :
15
- cargo build - -all-features
15
+ cargo build-all-features
16
16
17
17
test :
18
18
cargo test --all-features
You can’t perform that action at this time.
0 commit comments