Skip to content

nix

nix #11

Workflow file for this run

name: ROS2 Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
matrix:
env:
- {ROS_DISTRO: jazzy}
# - {ROS_DISTRO: kilted}
# - {ROS_DISTRO: rolling}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: 'ros-industrial/industrial_ci@125164b9f1883cdf1858897a7146d1bebf2be5c6'
env: ${{ matrix.env }}
check:
if: always()
name: check-ros-ci
runs-on: ubuntu-latest
needs:
- build
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}