Skip to content

Commit 7aa5317

Browse files
committed
Add Action CI check
Signed-off-by: Emerson Knapp <[email protected]>
1 parent b89dc19 commit 7aa5317

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Test
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- humble
7+
8+
jobs:
9+
build_and_test:
10+
runs-on: ubuntu-latest
11+
env:
12+
ROS_DISTRO: ${{ matrix.ros_distro }}
13+
container:
14+
image: rostooling/setup-ros-docker:ubuntu-jammy-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
ros_distro: [humble]
19+
steps:
20+
- name: Build and run tests
21+
id: action-ros-ci
22+
uses: ros-tooling/[email protected]
23+
with:
24+
target-ros2-distro: ${{ matrix.ros_distro }}
25+
- uses: actions/upload-artifact@v1
26+
with:
27+
name: colcon-logs
28+
path: ros_ws/log

0 commit comments

Comments
 (0)