Skip to content

Commit

Permalink
add test to check buildfirm error
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jun 23, 2023
1 parent ef41681 commit 32aa299
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/catkin_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit 32aa299

Please sign in to comment.