Pre-Commit #2
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: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| - name: Install ament_cpplint | |
| run: pip install ament_cpplint | |
| - name: Install ament_lint_cmake | |
| run: pip install ament_lint_cmake | |
| - name: Install ament_uncrustify | |
| run: pip install ament_uncrustify | |
| - name: Install ament_xmllint | |
| run: pip install ament_xmllint | |
| - uses: pre-commit/action@v3.0.1 |