Fix code style: remove trailing whitespace and tabs (Rolling distribu… #984
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| industrial_ci: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| env: | |
| # - {ROS_DISTRO: foxy, ROS_REPO: testing} | |
| # - {ROS_DISTRO: foxy, ROS_REPO: main} | |
| # - {ROS_DISTRO: galactic, ROS_REPO: testing} | |
| # - {ROS_DISTRO: galactic, ROS_REPO: main} | |
| - {ROS_DISTRO: humble, ROS_REPO: main} | |
| - {ROS_DISTRO: iron, ROS_REPO: main} | |
| - {ROS_DISTRO: jazzy, ROS_REPO: main} | |
| - {ROS_DISTRO: rolling, ROS_REPO: testing} | |
| env: | |
| CCACHE_DIR: /github/home/.ccache | |
| AFTER_INSTALL_TARGET_DEPENDENCIES: ./mavros/scripts/install_geographiclib_datasets.sh | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/cache@v3 | |
| with: | |
| path: "${{ env.CCACHE_DIR }}" | |
| key: "ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}" | |
| - uses: 'ros-industrial/industrial_ci@master' # nosemgrep | |
| env: ${{matrix.env}} |