Skip to content

Commit

Permalink
Merge e690f9c into 74b83f6
Browse files Browse the repository at this point in the history
  • Loading branch information
james-strauss-uwa committed Nov 3, 2022
2 parents 74b83f6 + e690f9c commit 94ec1bb
Show file tree
Hide file tree
Showing 46 changed files with 17,491 additions and 11,022 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 94ec1bb

Please sign in to comment.