File tree Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 38
38
- name : Install rust tooling for 32 bit builds
39
39
run : |
40
40
rustup target install i686-unknown-linux-gnu
41
+ - name : cargo check
42
+ run : |
43
+ cargo hack check --all-targets --target=i686-unknown-linux-gnu --feature-powerset
41
44
- name : cargo tests
42
45
run : |
43
46
cargo hack test --target=i686-unknown-linux-gnu --feature-powerset
47
+ - name : cargo doc tests
48
+ run : |
49
+ cargo hack test --doc --target=i686-unknown-linux-gnu --feature-powerset
Original file line number Diff line number Diff line change @@ -35,13 +35,15 @@ jobs:
35
35
- run : sudo apt-get update -y
36
36
if : matrix.os == 'ubuntu-latest'
37
37
- name : cargo check (powerset)
38
- run : cargo hack check --feature-powerset --no-dev-deps --exclude-no-default-features
39
- - name : cargo check examples
40
- run : cargo hack check --examples --feature-powerset --exclude-no-default-features
41
- - name : run tests
38
+ run : cargo hack check --feature-powerset --no-dev-deps
39
+ - name : cargo check examples (powerset)
40
+ run : cargo hack check --examples --feature-powerset
41
+ - name : run tests (powerset)
42
42
run : |
43
- cargo hack test --feature-powerset --exclude-no-default-features
44
- cargo hack test --examples --feature-powerset --exclude-no-default-features
43
+ cargo hack test --all-targets --feature-powerset
44
+ - name : run doc tests (powerset)
45
+ run : |
46
+ cargo hack test --doc --feature-powerset
45
47
46
48
fmt :
47
49
name : rust fmt
Original file line number Diff line number Diff line change 35
35
- run : cargo install cargo-valgrind
36
36
- name : run cargo valgrind
37
37
run : |
38
- cargo valgrind test --all-features
38
+ cargo valgrind test --all-targets --all-features
39
+ - name : run cargo valgrind on doc tests
40
+ run : |
41
+ cargo valgrind test --doc --all-features
You can’t perform that action at this time.
0 commit comments