Implementation of Dynamic Window Pure Pursuit (DWPP) #3919
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |