Merge pull request #12 from aaggj/foxy-devel #25
This file contains 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: main | |
on: | |
pull_request: | |
branches: | |
- foxy-devel | |
push: | |
branches: | |
- foxy-devel | |
jobs: | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
fail-fast: false | |
steps: | |
- name: Setup ROS 2 | |
uses: ros-tooling/[email protected] | |
with: | |
required-ros-distributions: foxy | |
- name: build and test | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: mocap_control mocap_control_msgs rqt_mocap_control mocap_marker_publisher mocap_marker_viz mocap_marker_viz_srvs | |
target-ros2-distro: foxy | |
vcs-repo-file-url: https://raw.githubusercontent.com/MOCAP4ROS2-Project/mocap/foxy-devel/dependency_repos.repos | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ros_ws/lcov/total_coverage.info | |
flags: unittests | |
name: codecov-umbrella | |
# yml: ./codecov.yml | |
fail_ci_if_error: false |