Skip to content

Commit

Permalink
workflow lint check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
woensug-choi committed Jun 28, 2024
1 parent a65a39c commit 8bbf5b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
tags: ["*"]
branches:
- ros2
pull_request:
branches:
- ros2

jobs:
# ament_lint:
Expand Down Expand Up @@ -66,7 +69,7 @@ jobs:

- name: Run Yamllint on YAML and .launch files
run: |
find . \( -iname '*.yml' -o -iname '*.yaml' \) -print0 | xargs -0 yamllint
find . \( -iname '*.yml' -o -iname '*.yaml' \) -print0 | xargs -0 yamllint -d "{extends: relaxed, rules: {new-line-at-end-of-file: {present: false}}}"
- name: Lint CMake files
run: find . \( -iname 'CMakeLists.txt' -o -iname '*.cmake' \) -print0 | xargs -0 cmake-lint

0 comments on commit 8bbf5b7

Please sign in to comment.