Skip to content

Commit 0d263d5

Browse files
committed
Add CI workflow
1 parent 3a5432b commit 0d263d5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- ros2
8+
pull_request:
9+
branches:
10+
- ros2
11+
12+
jobs:
13+
industrial_ci:
14+
runs-on: ubuntu-22.04
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
ROS_DISTRO: [humble, iron, jazzy, rolling]
19+
ROS_REPO: [testing, main]
20+
env:
21+
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
22+
ROS_REPO: ${{ matrix.ROS_REPO }}
23+
steps:
24+
- name: Checkout repo
25+
uses: actions/checkout@v4
26+
- name: Source tests
27+
uses: "ros-industrial/industrial_ci@master"

0 commit comments

Comments
 (0)