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 b89dc19 commit 7aa5317Copy full SHA for 7aa5317
.github/workflows/test.yml
@@ -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
27
+ name: colcon-logs
28
+ path: ros_ws/log
0 commit comments