Skip to content

Commit

Permalink
Add github CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Sep 30, 2024
1 parent d8c8f2b commit bcb4635
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:
- develop
pull_request:
branches:
- develop

jobs:
industrial_ci:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [noetic]
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 bcb4635

Please sign in to comment.