Add code coverage job with Codecov upload and workflow_dispatch trigger #1492
Workflow file for this run
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: ros2 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| industrial_ci: | |
| strategy: | |
| matrix: | |
| env: | |
| - {ROS_DISTRO: humble, ROS_REPO: main} | |
| - {ROS_DISTRO: jazzy, ROS_REPO: main} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: 'ros-industrial/industrial_ci@master' | |
| env: ${{matrix.env}} | |
| with: | |
| package-name: plotjuggler |