Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GA][Catkin Lint] refactor the script to run catkin lint #647

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/catkin_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,26 @@ jobs:
runs-on: ubuntu-latest
name: catkin_lint

container: ubuntu:20.04

steps:
- name: Setup OS
run: |
sudo apt-get update -y
sudo apt-get upgrade -y
apt-get update -y
apt-get upgrade -y
- name: Setup Git
run: |
sudo apt-get install -y git
apt-get install -y git
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: catkin lint setup
run: |
sudo apt-get install -y -q python3-pip python3-wstool
sudo pip3 install catkin_lint rosdep
sudo rosdep init
export DEBIAN_FRONTEND=noninteractive
apt-get install -y -q python3-pip python3-wstool
pip3 install catkin_lint rosdep
rosdep init
rosdep update
- name: catkin lint test
run: |
Expand Down
Loading