Skip to content

Commit

Permalink
Validate configuration changes using ros_buildfarm script (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
cottsay authored Jan 26, 2022
1 parent d51c713 commit e1bc281
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
%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

0 comments on commit e1bc281

Please sign in to comment.