Skip to content

Commit

Permalink
Merge 4111a91 into 22c8c6f
Browse files Browse the repository at this point in the history
  • Loading branch information
james-strauss-uwa committed Feb 20, 2023
2 parents 22c8c6f + 4111a91 commit c017f1f
Show file tree
Hide file tree
Showing 45 changed files with 14,476 additions and 8,458 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 {}
Loading

0 comments on commit c017f1f

Please sign in to comment.