Skip to content

Implementation of Dynamic Window Pure Pursuit (DWPP) #3919

Implementation of Dynamic Window Pure Pursuit (DWPP)

Implementation of Dynamic Window Pure Pursuit (DWPP) #3919

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
ament_lint_general:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-latest
container:
image: rostooling/setup-ros-docker:ubuntu-noble-ros-rolling-ros-base-latest
strategy:
fail-fast: false
matrix:
linter: [xmllint, cpplint, uncrustify, pep257, flake8, mypy]
steps:
- uses: actions/checkout@v5
- name: Install typeshed for mypy
if: matrix.linter == 'mypy'
run: sudo apt update && sudo apt install -y python3-typeshed
- uses: ros-tooling/[email protected]
with:
linter: ${{ matrix.linter }}
distribution: rolling
package-name: "*"
arguments: ${{ matrix.linter == 'mypy' && '--config tools/pyproject.toml' || '' }}
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
- uses: pre-commit/[email protected]
env:
SKIP: >-
ament_lint_cmake,
ament_cpplint,
ament_uncrustify,
ament_xmllint,
ament_flake8,
ament_pep257,
ament_mypy