add github workflow to cpplint costmap_3d #1
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: lint | |
on: [push] | |
defaults: | |
run: | |
# Only lint the costmap_3d package, the rest are upstream and have many | |
# linter errors that there is little point in fixing. | |
working-directory: ./costmap_3d | |
jobs: | |
lint: | |
name: Badger Linting | |
runs-on: | |
- self-hosted | |
- k8s | |
steps: | |
- name: Run Linting | |
uses: BadgerTechnologies/ros-ci-docker/linter@linter-v1 | |
with: | |
HARBOR_USER: ${{ secrets.HARBOR_USER }} | |
HARBOR_PASS: ${{ secrets.HARBOR_PASS }} |