Humble release versions 2024-05-23 #147
Workflow file for this run
This file contains 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: ROS 2 Repos Check | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
format_and_validity: | |
name: Format and Validity | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: python3 -m pip install vcstool yamllint | |
- name: Validate formatting | |
run: > | |
yamllint ros2.repos | |
-f github | |
-d "{extends: default, rules: {document-start: {present: false}, key-ordering: {}}}" | |
- name: Validate repositories | |
run: vcs validate --input ros2.repos |