Ros build #2
Workflow file for this run
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: Ros build | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | |
# You can convert this to a matrix build if you need cross-platform coverage. | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: ros-tooling/[email protected] | |
with: | |
required-ros-distributions: humble | |
- name: build | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: larr_planner_ros2 | |
target-ros2-distro: humble | |
style: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: DoozyX/[email protected] | |
with: | |
source: '.' | |
extensions: 'cc,h' | |
style: file | |
clangFormatVersion: '10' | |
check-path: '.' |