We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29d4177 commit 5cc0608Copy full SHA for 5cc0608
.github/workflows/rust.yml
@@ -66,7 +66,7 @@ jobs:
66
67
- name: Install cargo-ament-build
68
run: |
69
- cargo install cargo-ament-build
+ cargo install --debug cargo-ament-build
70
71
- name: Build and test
72
id: build
@@ -82,7 +82,7 @@ jobs:
82
. /opt/ros/${{ matrix.ros_distro }}/setup.sh
83
for path in $(colcon list | awk '$3 == "(ament_cargo)" { print $2 }'); do
84
cd $path
85
- echo "Checking $path"
+ echo "Running clippy in $path"
86
cargo clippy -- -D warnings
87
cd -
88
done
@@ -93,6 +93,7 @@ jobs:
93
94
for path in $(colcon list | awk '$3 == "(ament_cargo)" && $1 != "rclrs_examples" { print $2 }'); do
95
96
+ echo "Running rustdoc check in $path"
97
cargo rustdoc -- -D warnings
98
99
0 commit comments