Skip to content

Commit

Permalink
add github workflow to cpplint costmap_3d
Browse files Browse the repository at this point in the history
Add cpplint for costmap_3d. Currently only the costmap_3d package
passes, so only check it.
  • Loading branch information
c-andy-martin committed Apr 19, 2024
1 parent ad999d9 commit c555c2d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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 }}

0 comments on commit c555c2d

Please sign in to comment.