Add autorace2020 map and model and Fix model's mesh in rviz and gazebo. #14
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
# The name of the workflow | |
name: Lint | |
# Specifies the events that trigger the workflow | |
on: | |
pull_request: | |
# Defines a set of jobs to be run as part of the workflow | |
jobs: | |
ament_lint: | |
runs-on: ubuntu-latest | |
container: | |
image: rostooling/setup-ros-docker:ubuntu-noble-ros-rolling-ros-base-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
linter: [cppcheck, cpplint, uncrustify, flake8, pep257, lint_cmake, xmllint, copyright] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup ROS environment | |
uses: ros-tooling/[email protected] | |
- name: Run Linter | |
env: | |
AMENT_CPPCHECK_ALLOW_SLOW_VERSIONS: 1 | |
uses: ros-tooling/action-ros-lint@master | |
with: | |
linter: ${{ matrix.linter }} | |
distribution: rolling | |
package-name: "*" |