Skip to content

Commit

Permalink
Merge pull request #220 from ICRAR/liu-338
Browse files Browse the repository at this point in the history
Liu 338
  • Loading branch information
awicenec committed Mar 2, 2023
2 parents 5bf5a47 + 63faed7 commit 24d9f78
Show file tree
Hide file tree
Showing 60 changed files with 15,323 additions and 8,758 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/validate-graphs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Validate graphs

on: [push, pull_request]

jobs:

validate_graphs:
name: Validate graphs
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.9'

- name: Install dependencies
run: |
pip install jsonschema
- name: Validate graphs
run: |
cd tools
find .. -type f -name '*.graph' -print0 | xargs -0 -I {} python checkGraph.py {}

0 comments on commit 24d9f78

Please sign in to comment.