-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add "ROS 2 Workspace Test" sub-action (#43)
* feat: add ROS 2 Workspace test sub-action * refactor: use `test` sub-action in the main action * ci: add Test step in the Individual Setup and Build job and rename it
- Loading branch information
Showing
3 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: ROS 2 Workspace Test | ||
description: Test packages in a ROS 2 workspace | ||
author: ICHIRO ITS | ||
branding: | ||
icon: activity | ||
color: gray-dark | ||
runs: | ||
using: composite | ||
steps: | ||
- shell: bash | ||
run: | | ||
source install/setup.bash | ||
colcon test --event-handlers console_cohesion+ --pytest-with-coverage --return-code-on-test-failure |