-
Notifications
You must be signed in to change notification settings - Fork 53
43 lines (42 loc) · 1.06 KB
/
lint.yaml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Lint diagnostics
on:
pull_request:
jobs:
ament_lint:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-latest
container:
image: ubuntu:jammy
strategy:
fail-fast: false
matrix:
linter: [copyright, flake8, pep257]
steps:
- uses: actions/checkout@v2
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: rolling
- uses: ros-tooling/[email protected]
with:
distribution: rolling
linter: ${{ matrix.linter }}
package-name: turtle_tf2_py
ament_lint_cpp:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-latest
container:
image: ubuntu:jammy
strategy:
fail-fast: false
matrix:
linter: [copyright, cpplint, uncrustify]
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: rolling
- uses: ros-tooling/[email protected]
with:
distribution: rolling
linter: ${{ matrix.linter }}
package-name: turtle_tf2_cpp