Merge pull request #46 from apl-ocean-engineering/dev/fix_ci #50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ROS Industrial CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| industrial-ci: | |
| name: Run Industrial CI | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| env: | |
| # You need a more modern version of spdlog than provided | |
| # by 20.04; in development could get it from a backports PPA | |
| # but can't during CI | |
| #- {ROS_DISTRO: noetic} | |
| - {ROS_DISTRO: jazzy} | |
| - {ROS_DISTRO: kilted} | |
| - {ROS_DISTRO: rolling} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Run ROS Industrial CI | |
| uses: ros-industrial/industrial_ci@master | |
| env: ${{matrix.env}} |