File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 24
24
command : check
25
25
26
26
test :
27
- name : Test Suite
27
+ name : Unit tests
28
28
runs-on : ubuntu-latest
29
29
steps :
30
30
- uses : actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4.0.0
36
36
- uses : actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
37
37
with :
38
38
command : test
39
- args : --workspace
39
+ args : --workspace --lib
40
+
41
+ integration-test :
42
+ name : Integration tests
43
+ runs-on : ubuntu-latest
44
+ steps :
45
+ - uses : actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4.0.0
46
+ - uses : actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
47
+ with :
48
+ profile : minimal
49
+ toolchain : stable
50
+ override : true
51
+ - uses : actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
52
+ with :
53
+ command : test
54
+ args : --test '*'
40
55
41
56
fmt :
42
57
name : Rustfmt
You can’t perform that action at this time.
0 commit comments