Block packages that are not patched to propagate license agreements. … #224
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
%YAML 1.1 | |
--- | |
name: Run tests | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: ['master', 'production', 'ros2'] | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
with: | |
repository: ros-infrastructure/ros_buildfarm | |
path: ros_buildfarm | |
- name: Validate buildfarm configuration | |
env: | |
PYTHONPATH: ${{github.workspace}}/ros_buildfarm | |
run: ${{github.workspace}}/ros_buildfarm/scripts/misc/validate_config_index.py file://${{github.workspace}}/index.yaml | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Validate YAML style | |
run: yamllint . |