Skip to content

Commit

Permalink
Update lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ROBOTIS-Will authored Oct 14, 2020
1 parent 0f50eb0 commit 3a2d703
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,36 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
ament_lint:
ament_lint_bionic:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
linter: [copyright, cppcheck, cpplint, uncrustify, pep8, pep257, xmllint]
distribution: [dashing, eloquent, foxy]
distribution: [dashing, eloquent]
steps:
- uses: actions/checkout@v2
- uses: ros-tooling/setup-ros@master
- uses: ros-tooling/action-ros-lint@master
with:
distribution: ${{ matrix.distribution }}
linter: ${{ matrix.linter }}
package-name: |
turtlebot3
turtlebot3_bringup
turtlebot3_cartographer
turtlebot3_description
turtlebot3_example
turtlebot3_navigation2
turtlebot3_node
turtlebot3_teleop
ament_lint_focal:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
linter: [copyright, cppcheck, cpplint, uncrustify, pep8, pep257, xmllint]
distribution: [foxy]
steps:
- uses: actions/checkout@v2
- uses: ros-tooling/setup-ros@master
Expand Down

0 comments on commit 3a2d703

Please sign in to comment.