Skip to content

Commit

Permalink
Merge pull request #35 from emersonknapp/emersonknapp/humble-ci
Browse files Browse the repository at this point in the history
Add Action CI check
  • Loading branch information
facontidavide committed Nov 17, 2023
2 parents 5ce4e96 + 8dd2d90 commit d9439eb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test
on:
pull_request:
push:
branches:
- humble

jobs:
build_and_test:
runs-on: ubuntu-latest
env:
ROS_DISTRO: ${{ matrix.ros_distro }}
container:
image: rostooling/setup-ros-docker:ubuntu-jammy-latest
strategy:
fail-fast: false
matrix:
ros_distro: [humble]
steps:
- name: Build and run tests
id: action-ros-ci
uses: ros-tooling/action-ros-ci@v0.3
with:
target-ros2-distro: ${{ matrix.ros_distro }}
- uses: actions/upload-artifact@v1
with:
name: colcon-logs
path: ros_ws/log
1 change: 1 addition & 0 deletions behaviortree_ros2/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<buildtool_depend>ament_cmake</buildtool_depend>

<depend>libboost-dev</depend>
<depend>rclcpp</depend>
<depend>rclcpp_action</depend>
<depend>behaviortree_cpp</depend>
Expand Down

0 comments on commit d9439eb

Please sign in to comment.