Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Sep 30, 2024
1 parent 3a5432b commit 0d263d5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- ros2
pull_request:
branches:
- ros2

jobs:
industrial_ci:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [humble, iron, jazzy, rolling]
ROS_REPO: [testing, main]
env:
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Source tests
uses: "ros-industrial/industrial_ci@master"

0 comments on commit 0d263d5

Please sign in to comment.