Skip to content

Commit

Permalink
Stop checking duplicates until is clear how it works
Browse files Browse the repository at this point in the history
  • Loading branch information
areleu committed Feb 23, 2024
1 parent 5759af1 commit f7a3162
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/automated_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- name: verify
run: |
java -jar build/robot.jar verify --input build/oeo-extended/$(cat VERSION)/oeo-extended.omn --queries tests/verify/*
- name: find-duplicates
id: duplicates
run: |
linenum=$(sort build/oeo-extended/$(cat VERSION)/oeo-extended.omn | uniq -d | grep -Poc "Class: \K(.*)")
if [ "$linenum" != "0" ]; then
exit 1
fi
# - name: find-duplicates
# id: duplicates
# run: |
# linenum=$(sort build/oeo-extended/$(cat VERSION)/oeo-extended.omn | uniq -d | grep -Poc "Class: \K(.*)")
# if [ "$linenum" != "0" ]; then
# exit 1
# fi
- name: check inferred equivalence
run: |
java -jar build/robot.jar reason --reasoner ELK --input build/oeo-extended/$(cat VERSION)/oeo-extended.omn --axiom-generators "EquivalentClass" --equivalent-classes-allowed asserted-only
Expand Down

0 comments on commit f7a3162

Please sign in to comment.