File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ status $rc "Checking all Clippy Lints in the workspace" \
28
28
29
29
# # Check we can generate all the documentation
30
30
status $rc " Checking Documentation can be generated OK" \
31
- cargo docs; rc=$?
31
+ cargo +nightly docs; rc=$?
32
32
33
33
# # Check if all Self contained tests pass (Test that need no external resources).
34
34
status $rc " Checking Self contained Unit tests all pass" \
35
35
cargo testunit; rc=$?
36
36
37
37
# # Check if all documentation tests pass.
38
38
status $rc " Checking Documentation tests all pass" \
39
- cargo testdocs; rc=$?
39
+ cargo +nightly testdocs; rc=$?
40
40
41
41
# # Check if any benchmarks defined run (We don;t validate the results.)
42
42
status $rc " Checking Benchmarks all run to completion" \
75
75
done
76
76
77
77
# Return an error if any of this fails.
78
- exit $rc
78
+ exit $rc
You can’t perform that action at this time.
0 commit comments