Enhance ROS CI workflow with build and test steps

Added build and test steps to the ROS CI workflow.
This commit is contained in:
Ackimixs
2025-12-08 23:19:43 +01:00
committed by GitHub
parent c573e87fd0
commit 57617d70e2

View File

@@ -16,7 +16,15 @@ jobs:
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: jazzy
- run: vcs --help
- name: Build
run: colcon build --event-handlers console_direct+
- name: Test
run: |
colcon test --event-handlers console_direct+
colcon test-result --verbose
build_docker:
runs-on: ubuntu-latest
@@ -27,4 +35,11 @@ jobs:
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: jazzy
- run: vcs --help
- name: Build
run: colcon build --event-handlers console_direct+
- name: Test
run: |
colcon test --event-handlers console_direct+
colcon test-result --verbose