Remove duplicate private key and add warning #410
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
| # https://github.com/ros-tooling/setup-ros | |
| name: ros | |
| on: [push, workflow_dispatch, pull_request] | |
| jobs: | |
| ros: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ['ubuntu-24.04', 'ubuntu-24.04-arm'] | |
| container: | |
| image: murilomarinho/sas:latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build colcon | |
| shell: bash | |
| run: | | |
| source /opt/ros/jazzy/setup.bash | |
| colcon build | |