forked from jsk-ros-pkg/jsk_3rdparty
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 909 Bytes
/
catkin_lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# generated by `./generate_action_config.py noetic`
# jsk_travis
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: check_catkin_lint
container: ubuntu:20.04
steps:
- name: Install catkin_lint
run: apt update -q && apt install -y -q catkin-lint
- name: Chcekout
uses: actions/checkout@v3
- name: Check catkin_lint
run: |
catkin_lint --color always -W2 \
--warning external_include_path \
--warning duplicate_cmd \
--warning missing_catkin_depend \
--warning unconfigured_system_depend \
--warning unconfigured_build_depend \
--warning order_violation \
--warning catkin_order_violation \
--warning external_link_directory \
--warning unused_catkin_include_dirs \
--warning missing_directory \
$GITHUB_WORKSPACE