Skip to content

Commit

Permalink
Add validate to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jun 27, 2024
1 parent a24e67a commit 0f498a2
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,21 @@ jobs:
java-version: ${{ matrix.Java }}
distribution: 'adopt'

- name: Test with Ant
run: ant testnogui
- name: Build with Ant
run: ant build

- name: Run some examples
run: |
./run.sh examples/l22_small.swc -exportnml1
./run.sh examples/l22_small.swc -exportnml2
- name: Test with Ant
run: |
ant testnogui
- name: Validate generated NeuroML 2 files
run: |
pip install pyneuroml
cd temp # where the NeuroML files get generated in the previous step
ls -alth
pynml -validate *.nml

0 comments on commit 0f498a2

Please sign in to comment.